3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

Fixed any chance of creatures .getTarget throwing a class cast exception - thanks to an old PR by garbagemule!

Dieser Commit ist enthalten in:
Nathan Adams 2012-01-14 14:45:56 +00:00
Ursprung 3d31c27864
Commit e6bb19f63a

Datei anzeigen

@ -24,6 +24,7 @@ public class CraftCreature extends CraftLivingEntity implements Creature {
public CraftLivingEntity getTarget() {
if (getHandle().target == null) return null;
if (!(getHandle().target instanceof CraftLivingEntity)) return null;
return (CraftLivingEntity) getHandle().target.getBukkitEntity();
}