BUKKIT-57 Fix using Bukkit interface instead of nmc Entity for type check.
Thanks nidefawl! By: Andrew Ardill <andrew.ardill@gmail.com>
This commit is contained in:
@@ -81,7 +81,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
|||||||
}
|
}
|
||||||
// Slimes are a special (and broken) case
|
// Slimes are a special (and broken) case
|
||||||
else if (entity instanceof EntitySlime) {
|
else if (entity instanceof EntitySlime) {
|
||||||
if (entity instanceof MagmaCube) { return new CraftMagmaCube(server, (EntityLavaSlime) entity); }
|
if (entity instanceof EntityLavaSlime) { return new CraftMagmaCube(server, (EntityLavaSlime) entity); }
|
||||||
else { return new CraftSlime(server, (EntitySlime) entity); }
|
else { return new CraftSlime(server, (EntitySlime) entity); }
|
||||||
}
|
}
|
||||||
// Flying
|
// Flying
|
||||||
|
|||||||
Reference in New Issue
Block a user