From cd50683f7899976527a9dc53a6b4f2b0daf2c6f9 Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Sat, 19 Mar 2011 01:29:21 -0400 Subject: [PATCH] World.spawnCreature now returns LivingEntity instead of Creature, to allow Ghasts and Slimes to be spawned using the command. --- src/main/java/org/bukkit/craftbukkit/CraftWorld.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java index 78331aac1c..4ca351a371 100644 --- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java +++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java @@ -342,10 +342,10 @@ public class CraftWorld implements World { return (Boat) boat.getBukkitEntity(); } - public Creature spawnCreature(Location loc, CreatureType creatureType) { - Creature creature; + public LivingEntity spawnCreature(Location loc, CreatureType creatureType) { + LivingEntity creature; try { - EntityCreature entityCreature = (EntityCreature) EntityTypes.a(creatureType.getName(), world); + EntityLiving entityCreature = (EntityLiving) EntityTypes.a(creatureType.getName(), world); entityCreature.a(loc.getX(), loc.getY(), loc.getZ()); creature = (Creature) CraftEntity.getEntity(server, entityCreature); world.a(entityCreature);