mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-24 09:16:06 +01:00
BUKKIT-57 Add Snowman to CreatureType Enum. Thanks snowleo!
By: Andrew Ardill <andrew.ardill@gmail.com>
This commit is contained in:
parent
be588e1004
commit
fa2fabd4ec
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ public enum CreatureType {
|
|||
ENDER_DRAGON("EnderDragon", EnderDragon.class),
|
||||
VILLAGER("Villager", Villager.class),
|
||||
BLAZE("Blaze", Blaze.class),
|
||||
MUSHROOM_COW("MushroomCow", MushroomCow.class);
|
||||
MUSHROOM_COW("MushroomCow", MushroomCow.class),
|
||||
SNOWMAN("Snowman", Snowman.class);
|
||||
|
||||
private String name;
|
||||
private Class<? extends Entity> clazz;
|
||||
|
|
Loading…
Add table
Reference in a new issue