mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-20 15:44:49 +01:00
Changed hatchingType to MobType from CreatureType as refactoring (and so plugin breaking) will take place in a week.
This commit is contained in:
parent
da6ce2d80e
commit
e544fb71c3
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ public class EntityEgg extends Entity {
|
|||
if (!hatching) {
|
||||
numHatching = 0;
|
||||
}
|
||||
CreatureType hatchingType = CreatureType.CHICKEN;
|
||||
MobType hatchingType = MobType.CHICKEN;
|
||||
|
||||
if (this.ak instanceof EntityPlayer) {
|
||||
CraftServer server = ((WorldServer) this.world).getServer();
|
||||
|
|
Loading…
Reference in a new issue