mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 16:04:38 +01:00
SPIGOT-2792: Return PIG for broken spawners
This commit is contained in:
parent
8095a750e7
commit
88eede85cc
@ -24,7 +24,8 @@ public class CraftCreatureSpawner extends CraftBlockState implements CreatureSpa
|
||||
}
|
||||
|
||||
public EntityType getSpawnedType() {
|
||||
return EntityType.fromName(spawner.getSpawner().getMobName().a());
|
||||
MinecraftKey key = spawner.getSpawner().getMobName();
|
||||
return (key == null) ? EntityType.PIG : EntityType.fromName(key.a());
|
||||
}
|
||||
|
||||
public void setSpawnedType(EntityType entityType) {
|
||||
|
Loading…
Reference in New Issue
Block a user