diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java index 9388877504..9dc4297dbe 100644 --- a/src/main/java/net/minecraft/server/World.java +++ b/src/main/java/net/minecraft/server/World.java @@ -746,6 +746,8 @@ public class World implements IBlockAccess { type = CreatureType.ZOMBIE; } else if (entity instanceof EntitySlime) { type = CreatureType.SLIME; + } else if (entity instanceof EntitySquid) { + type = CreatureType.SQUID; } if (type != null) {