v0.93.3 Fixed some issues with class items, inventory, arena end crashing with logging, etc.

This commit is contained in:
Andreas Troelsen
2011-07-19 23:10:34 +02:00
parent 8805f8a38c
commit a277bf2b33
3 changed files with 5 additions and 5 deletions
@@ -391,11 +391,11 @@ public class MASpawnThread implements Runnable
{
if (!(e instanceof Creature))
continue;
// TODO: Remove the try-catch when Bukkit API is fixed.
c = (Creature) e;
target = c.getTarget();
try { target = c.getTarget(); } catch (ClassCastException cce) { continue; }
//if (target instanceof Player && arena.livePlayers.contains(target))
if (target instanceof Player && arena.arenaPlayers.contains(target))
continue;