Run handitem cache every tick

This commit is contained in:
Nassim Jahnke 2021-10-02 16:38:20 +02:00
parent 68c63d20ed
commit 69409d71d1
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -93,7 +93,7 @@ public class BukkitViaLoader implements ViaPlatformLoader {
if (plugin.getConf().isItemCache()) {
handItemCache = new HandItemCache();
tasks.add(handItemCache.runTaskTimerAsynchronously(plugin, 2L, 2L)); // Updates player's items :)
tasks.add(handItemCache.runTaskTimerAsynchronously(plugin, 1L, 1L)); // Updates player's items :)
}
}