3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

Added missing EntitySquid, you can now prevent them from spawning!

Dieser Commit ist enthalten in:
Gunther De Wachter 2011-03-17 18:32:18 +01:00 committet von Erik Broes
Ursprung 41752f401c
Commit 2ae5b98d10

Datei anzeigen

@ -746,6 +746,8 @@ public class World implements IBlockAccess {
type = CreatureType.ZOMBIE; type = CreatureType.ZOMBIE;
} else if (entity instanceof EntitySlime) { } else if (entity instanceof EntitySlime) {
type = CreatureType.SLIME; type = CreatureType.SLIME;
} else if (entity instanceof EntitySquid) {
type = CreatureType.SQUID;
} }
if (type != null) { if (type != null) {