diff --git a/src/main/java/com/garbagemule/MobArena/waves/MACreature.java b/src/main/java/com/garbagemule/MobArena/waves/MACreature.java index b36318c..01c04b0 100644 --- a/src/main/java/com/garbagemule/MobArena/waves/MACreature.java +++ b/src/main/java/com/garbagemule/MobArena/waves/MACreature.java @@ -29,8 +29,10 @@ public class MACreature static { map = new HashMap<>(); for (EntityType type : EntityType.values()) { - // Instantiating a new creature registers it - new MACreature(type); + if (type.isAlive()) { + // Instantiating a new creature registers it + new MACreature(type); + } } }