Added slime as a possible creature type.

This commit is contained in:
sk89q 2011-02-18 19:44:32 -08:00
parent bc8134c7a1
commit eaddcfc675
2 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,8 @@ public enum CreatureType {
SKELETON("Skeleton"),
SPIDER("Spider"),
ZOMBIE("Zombie"),
SQUID("Squid");
SQUID("Squid"),
SLIME("Slime");
private String name;

View File

@ -18,7 +18,8 @@ public enum MobType {
SKELETON("Skeleton"),
SPIDER("Spider"),
ZOMBIE("Zombie"),
SQUID("Squid");
SQUID("Squid"),
SLIME("Slime");
private String name;