No idea why this still refuses to compile locally. Stupid ant.

This commit is contained in:
md_5 2012-10-28 20:01:27 +11:00
parent 2ae9c577db
commit e2bd22d984
2 changed files with 4 additions and 4 deletions

View file

@ -37,9 +37,9 @@ public enum Mob
MAGMACUBE("MagmaCube", Enemies.ENEMY, EntityType.MAGMA_CUBE), MAGMACUBE("MagmaCube", Enemies.ENEMY, EntityType.MAGMA_CUBE),
SNOWMAN("Snowman", Enemies.FRIENDLY, "", EntityType.SNOWMAN), SNOWMAN("Snowman", Enemies.FRIENDLY, "", EntityType.SNOWMAN),
OCELOT("Ocelot", Enemies.NEUTRAL, EntityType.OCELOT), OCELOT("Ocelot", Enemies.NEUTRAL, EntityType.OCELOT),
IRONGOLEM("IronGolem", Enemies.NEUTRAL, EntityType.IRON_GOLEM); IRONGOLEM("IronGolem", Enemies.NEUTRAL, EntityType.IRON_GOLEM),
WITHER("Wither", Enemies.ENEMY, EntityType.WITHER); WITHER("Wither", Enemies.ENEMY, EntityType.WITHER),
BAT("Bat", Enemies.NEUTRAL, EntityType.BAT); BAT("Bat", Enemies.NEUTRAL, EntityType.BAT),
WITCH("Witch", Enemies.ENEMY, EntityType.WITCH); WITCH("Witch", Enemies.ENEMY, EntityType.WITCH);
public static final Logger logger = Logger.getLogger("Minecraft"); public static final Logger logger = Logger.getLogger("Minecraft");
@ -71,7 +71,7 @@ public enum Mob
hashMap.put(mob.name.toLowerCase(Locale.ENGLISH), mob); hashMap.put(mob.name.toLowerCase(Locale.ENGLISH), mob);
} }
} }
public static Set<String> getMobList() { public static Set<String> getMobList() {
return Collections.unmodifiableSet(hashMap.keySet()); return Collections.unmodifiableSet(hashMap.keySet());
} }

Binary file not shown.