summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Schepp <schneeleo@gmail.com>2013-03-15 13:44:43 -0700
committerAlexander Schepp <schneeleo@gmail.com>2013-03-15 13:44:43 -0700
commitd63e2594619efa815aab46e40d2b4db07ec442fa (patch)
tree68a3f770f0bb2e0b41e8aea20975547fbe4d4dc1
parent734286e8d3b7a14597ce4305d4f3c3abcf5296ac (diff)
parentc8a867be38b6309dd497cbc9bfd5d32222fa692d (diff)
downloadEssentials-d63e2594619efa815aab46e40d2b4db07ec442fa.tar
Essentials-d63e2594619efa815aab46e40d2b4db07ec442fa.tar.gz
Essentials-d63e2594619efa815aab46e40d2b4db07ec442fa.tar.lz
Essentials-d63e2594619efa815aab46e40d2b4db07ec442fa.tar.xz
Essentials-d63e2594619efa815aab46e40d2b4db07ec442fa.zip
Merge pull request #388 from GunfighterJ/2.9
[Feature] Additional spawnable mob types
-rw-r--r--Essentials/src/com/earth2me/essentials/Mob.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/Essentials/src/com/earth2me/essentials/Mob.java b/Essentials/src/com/earth2me/essentials/Mob.java
index 0e0b18e6e..76c2a30db 100644
--- a/Essentials/src/com/earth2me/essentials/Mob.java
+++ b/Essentials/src/com/earth2me/essentials/Mob.java
@@ -46,6 +46,10 @@ public enum Mob
WITCH("Witch", Enemies.ENEMY, EntityType.WITCH),
BOAT("Boat", Enemies.NEUTRAL, EntityType.BOAT),
MINECART("Minecart", Enemies.NEUTRAL, EntityType.MINECART),
+ MINECART_CHEST("ChestMinecart", Enemies.NEUTRAL, EntityType.MINECART_CHEST),
+ MINECART_FURNACE("FurnaceMinecart", Enemies.NEUTRAL, EntityType.MINECART_FURNACE),
+ MINECART_TNT("TNTMinecart", Enemies.NEUTRAL, EntityType.MINECART_TNT),
+ MINECART_HOPPER("HopperMinecart", Enemies.NEUTRAL, EntityType.MINECART_HOPPER),
ENDERCRYSTAL("EnderCrystal", Enemies.NEUTRAL, EntityType.ENDER_CRYSTAL),
EXPERIENCEORB("ExperienceOrb", Enemies.NEUTRAL, EntityType.EXPERIENCE_ORB);
public static final Logger logger = Logger.getLogger("Minecraft");