Don't load dummy twice

This commit is contained in:
Jesse Boyd 2019-04-23 23:30:43 +10:00
parent c45d4b58cc
commit 02a6caa3ab
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -318,17 +318,17 @@ public class WorldEditPlugin extends JavaPlugin { //implements TabCompleter
{
File pluginsFolder = MainUtil.getJarFile().getParentFile();
for (File file : pluginsFolder.listFiles()) {
if (file.length() == 1073) return;
if (file.length() == 1988) return;
}
File dummy = MainUtil.copyFile(MainUtil.getJarFile(), "DummyFawe.src", pluginsFolder, "DummyFawe.jar");
if (dummy != null && dummy.exists()) {
if (dummy != null && dummy.exists() && Bukkit.getPluginManager().getPlugin("FastAsyncWorldEdit") == null) {
try {
Bukkit.getPluginManager().loadPlugin(dummy);
} catch (Throwable e) {
e.printStackTrace();
}
getLogger().info("Please restart the server if you have any plugins which depend on FAWE.");
}
getLogger().info("Please restart the server if you have any plugins which depend on FAWE.");
}
}