mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 21:17:00 +01:00
Allow GIANTS to spawn from Eggs
This commit is contained in:
parent
33f7af519f
commit
195423cd0b
1 changed files with 3 additions and 0 deletions
|
@ -218,6 +218,9 @@ public class EntityEgg extends Entity {
|
|||
case GHAST:
|
||||
entity = new EntityGhast(this.world);
|
||||
break;
|
||||
case GIANT:
|
||||
entity = new EntityGiantZombie(this.world);
|
||||
break;
|
||||
case PIG:
|
||||
entity = new EntityPig(this.world);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue