Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-24 18:10:08 +01:00
Don't load dummy twice
Dieser Commit ist enthalten in:
Ursprung
c45d4b58cc
Commit
02a6caa3ab
@ -318,17 +318,17 @@ public class WorldEditPlugin extends JavaPlugin { //implements TabCompleter
|
|||||||
{
|
{
|
||||||
File pluginsFolder = MainUtil.getJarFile().getParentFile();
|
File pluginsFolder = MainUtil.getJarFile().getParentFile();
|
||||||
for (File file : pluginsFolder.listFiles()) {
|
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");
|
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 {
|
try {
|
||||||
Bukkit.getPluginManager().loadPlugin(dummy);
|
Bukkit.getPluginManager().loadPlugin(dummy);
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
e.printStackTrace();
|
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.");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren