mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-05 18:27:17 +01:00
Added missing EntitySquid, you can now prevent them from spawning!
This commit is contained in:
parent
41752f401c
commit
2ae5b98d10
1 changed files with 2 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue