diff --git a/resources/plugin.yml b/resources/plugin.yml index 0b6367c..3da66d7 100644 --- a/resources/plugin.yml +++ b/resources/plugin.yml @@ -1,7 +1,7 @@ name: MobArena author: garbagemule main: com.garbagemule.MobArena.MobArena -version: 0.95.5.14 +version: 0.95.5.15 softdepend: [Spout,Towny,Heroes,MagicSpells,Vault] commands: ma: diff --git a/src/com/garbagemule/MobArena/waves/MACreature.java b/src/com/garbagemule/MobArena/waves/MACreature.java index cc7a44e..06cbc86 100644 --- a/src/com/garbagemule/MobArena/waves/MACreature.java +++ b/src/com/garbagemule/MobArena/waves/MACreature.java @@ -85,7 +85,8 @@ public enum MACreature WITHERSKELETON(EntityType.SKELETON), WITHERSKELETONS(EntityType.SKELETON), BABYZOMBIE(EntityType.ZOMBIE), BABYZOMBIES(EntityType.ZOMBIE), BABYPIGMAN(EntityType.PIG_ZOMBIE), BABYPIGMEN(EntityType.PIG_ZOMBIE), - ZOMBIEVILLAGER(EntityType.ZOMBIE), ZOMBIEVILLAGERS(EntityType.ZOMBIE); + ZOMBIEVILLAGER(EntityType.ZOMBIE), ZOMBIEVILLAGERS(EntityType.ZOMBIE), + BABYZOMBIEVILLAGER(EntityType.ZOMBIE),BABYZOMBIEVILLAGERS(EntityType.ZOMBIE); private List colors = Arrays.asList(DyeColor.values()); private EntityType type; @@ -161,6 +162,9 @@ public enum MACreature case ZOMBIEVILLAGERS: ((Zombie) e).setVillager(true); break; + case BABYZOMBIEVILLAGER: + case BABYZOMBIEVILLAGERS: + ((Zombie) e).setVillager(true); case BABYZOMBIE: case BABYZOMBIES: case BABYPIGMAN: