Removed a stupid worldname method.

This commit is contained in:
MattBDev
2019-06-18 23:43:06 -04:00
parent 2f9ece3268
commit 9d1117303c
14 changed files with 45 additions and 91 deletions

View File

@ -97,7 +97,7 @@ public class EditSessionBuilder {
public EditSessionBuilder world(@Nonnull World world) {
checkNotNull(world);
this.world = world;
this.worldName = Fawe.imp().getWorldName(world);
this.worldName = world.getName();
return this;
}