item service: correct scheduled delay for reloading tradable items

This commit is contained in:
Adam
2021-03-07 23:24:16 -05:00
parent b3b7491680
commit 5ba3e510dc

View File

@@ -268,7 +268,7 @@ public class ItemService
fetchPrice(id);
}
@Scheduled(fixedDelay = 1_8000_000) // 30 minutes
@Scheduled(fixedDelay = 1_800_000) // 30 minutes
public void reloadItems() throws IOException
{
List<ItemDefinition> items = cacheService.getItems();