1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-26 00:27:08 +01:00

Removed MONSTER CreatureType.

This commit is contained in:
EvilSeph 2012-02-03 02:42:40 -05:00
parent 5479a2ca82
commit 028cbb8fe9

View file

@ -277,9 +277,6 @@ public class CraftEventFactory {
type = CreatureType.BLAZE;
} else if (entityliving instanceof EntitySilverfish) {
type = CreatureType.SILVERFISH;
// Supertype of many, last!
} else if (entityliving instanceof EntityMonster) {
type = CreatureType.MONSTER;
}
CreatureSpawnEvent event = new CreatureSpawnEvent(entity, type, entity.getLocation(), spawnReason);