Fix styling

This commit is contained in:
IronApollo
2020-09-15 19:07:52 -04:00
parent 64a71600f9
commit cd5691b819
2 changed files with 8 additions and 10 deletions

View File

@ -133,12 +133,12 @@ public class WorldEditPlugin extends JavaPlugin { //implements TabCompleter
ChunkDeleter.runFromFile(delChunks, true);
}
if(this.getDataFolder().getParentFile().listFiles(file -> {
if(file.getName().equals("DummyFawe.jar")){
if (this.getDataFolder().getParentFile().listFiles(file -> {
if (file.getName().equals("DummyFawe.jar")) {
return true;
}
return false;
}).length > 0){
}).length > 0) {
getLogger().warning("DummyFawe detected! This is no longer necessary. Please remove immediately and restart your server!");
}
}