Fixed a drop table loading issue

This commit is contained in:
Indyuce 2020-07-20 16:15:50 +02:00
parent 6fc5f8f657
commit ffece79dd2

View File

@ -50,7 +50,7 @@ public class DropTableManager extends MMOManager {
if (obj instanceof ConfigurationSection) {
DropTable table = new DropTable((ConfigurationSection) obj);
table.postLoad();
Bukkit.getScheduler().runTask(MMOCore.plugin, () -> table.postLoad());
return table;
}