Added slime as a possible creature type.

By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
Bukkit/Spigot 2011-02-18 19:44:32 -08:00
parent bff4790a18
commit c0710323a9
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;