Implemented World.getWorldType

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
CraftBukkit/Spigot 2012-01-15 17:44:15 +00:00
parent 876c2db682
commit e3c83ba119

View file

@ -943,4 +943,8 @@ public class CraftWorld implements World {
return result;
}
public org.bukkit.WorldType getWorldType() {
return org.bukkit.WorldType.getByName(world.getWorldData().getType().name());
}
}