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

Allow GIANTS to spawn from Eggs

Dieser Commit ist enthalten in:
Erik Broes 2011-03-29 22:56:36 +02:00
Ursprung 33f7af519f
Commit 195423cd0b

Datei anzeigen

@ -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;