Don't rely on the Obsidian Bomb explosion to clear the dropped block item. Fixes #379

This commit is contained in:
Andreas Troelsen
2017-05-29 09:19:04 +02:00
parent d58ec23daf
commit 6bbc9b55cf
@@ -54,7 +54,7 @@ public class ObsidianBomb implements Ability
if (!arena.isRunning()) if (!arena.isRunning())
return; return;
world.getBlockAt(loc).breakNaturally(); world.getBlockAt(loc).setType(Material.AIR);
world.createExplosion(loc, 3F); world.createExplosion(loc, 3F);
} }
}, FUSE); }, FUSE);