Added slime as a possible creature type.

This commit is contained in:
sk89q
2011-02-18 19:44:32 -08:00
parent 0a722adaa2
commit fbfa048463
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;