mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
BUKKIT-57 Add Snowman to CreatureType Enum. Thanks snowleo!
This commit is contained in:
parent
6942fb9a8e
commit
fe1bfc3f43
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue