Minor redundancy cleanup.

This commit is contained in:
garbagemule 2012-03-30 03:34:16 +02:00
parent 08b19e7b8e
commit 9ada0cd100
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -27,7 +27,7 @@ public class ObsidianBomb implements Ability
final World world = arena.getWorld();
final Location loc = target.getLocation();
Block b = world.getBlockAt(target.getLocation());
Block b = world.getBlockAt(loc);
b.setType(Material.OBSIDIAN);
arena.addBlock(b);