mirror of
https://github.com/garbagemule/MobArena.git
synced 2024-11-22 18:46:45 +01:00
v0.93.3 Fixed some issues with class items, inventory, arena end crashing with logging, etc.
This commit is contained in:
parent
8805f8a38c
commit
a277bf2b33
BIN
MobArena.jar
BIN
MobArena.jar
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
name: MobArena
|
||||
main: com.garbagemule.MobArena.MobArena
|
||||
version: 0.93.2
|
||||
softdepend: [MultiVerse,XcraftGate]
|
||||
version: 0.93.3
|
||||
softdepend: [MultiVerse,XcraftGate,Towny]
|
||||
commands:
|
||||
ma:
|
||||
description: Base command for MobArena
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user