BUKKIT-57 Add Snowman to CreatureType Enum. Thanks snowleo!
This commit is contained in:
parent
6942fb9a8e
commit
fe1bfc3f43
@ -26,7 +26,8 @@ public enum CreatureType {
|
|||||||
ENDER_DRAGON("EnderDragon", EnderDragon.class),
|
ENDER_DRAGON("EnderDragon", EnderDragon.class),
|
||||||
VILLAGER("Villager", Villager.class),
|
VILLAGER("Villager", Villager.class),
|
||||||
BLAZE("Blaze", Blaze.class),
|
BLAZE("Blaze", Blaze.class),
|
||||||
MUSHROOM_COW("MushroomCow", MushroomCow.class);
|
MUSHROOM_COW("MushroomCow", MushroomCow.class),
|
||||||
|
SNOWMAN("Snowman", Snowman.class);
|
||||||
|
|
||||||
private String name;
|
private String name;
|
||||||
private Class<? extends Entity> clazz;
|
private Class<? extends Entity> clazz;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user