mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-02 17:32:03 +01:00
Added slime as a possible creature type.
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
bff4790a18
commit
c0710323a9
2 changed files with 4 additions and 2 deletions
|
@ -15,7 +15,8 @@ public enum CreatureType {
|
|||
SKELETON("Skeleton"),
|
||||
SPIDER("Spider"),
|
||||
ZOMBIE("Zombie"),
|
||||
SQUID("Squid");
|
||||
SQUID("Squid"),
|
||||
SLIME("Slime");
|
||||
|
||||
private String name;
|
||||
|
||||
|
|
|
@ -18,7 +18,8 @@ public enum MobType {
|
|||
SKELETON("Skeleton"),
|
||||
SPIDER("Spider"),
|
||||
ZOMBIE("Zombie"),
|
||||
SQUID("Squid");
|
||||
SQUID("Squid"),
|
||||
SLIME("Slime");
|
||||
|
||||
private String name;
|
||||
|
||||
|
|
Loading…
Reference in a new issue