Removed async world creation option for all versions 1.13 or higher, as this doesn't work properly anymore with FAWE

This commit is contained in:
Butzlabben 2020-08-24 12:15:35 +02:00
parent 09d00ccf6a
commit 5f88f34d24

View File

@ -166,7 +166,8 @@ public class WorldSystem extends JavaPlugin {
// Choose right creatoradapter for #16
if (Bukkit.getPluginManager().getPlugin("FastAsyncWorldEdit") != null
&& Bukkit.getPluginManager().getPlugin("WorldEdit") != null
&& PluginConfig.loadWorldsASync()) {
&& PluginConfig.loadWorldsASync()
&& !is1_13Plus) {
creator = new AsyncCreatorAdapter();
Bukkit.getConsoleSender()
.sendMessage(PluginConfig.getPrefix() + "Found FAWE! Try now to create worlds async");