mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-23 16:56:31 +01:00
Fix incorrect entity ID for iron golem. Addresses BUKKIT-1088
By: Celtic Minstrel <celtic.minstrel.ca@some.place>
This commit is contained in:
parent
ce4d959ab2
commit
839a674c9b
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ public enum EntityType {
|
|||
MUSHROOM_COW("MushroomCow", MushroomCow.class, 96),
|
||||
SNOWMAN("SnowMan", Snowman.class, 97),
|
||||
OCELOT("Ozelot", Ocelot.class, 98),
|
||||
IRON_GOLEM("VillagerGolem", IronGolem.class, 98),
|
||||
IRON_GOLEM("VillagerGolem", IronGolem.class, 99),
|
||||
VILLAGER("Villager", Villager.class, 120),
|
||||
ENDER_CRYSTAL("EnderCrystal", EnderCrystal.class, 200),
|
||||
// These don't have an entity ID in nms.EntityTypes.
|
||||
|
|
Loading…
Add table
Reference in a new issue