--- miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/SuperMiner.java 2011/08/07 20:25:13 1586 +++ miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/deprecated/SuperMiner.java_ 2012/01/25 21:34:56 1679 @@ -63,9 +63,6 @@ public void onBlockDamage(BlockDamageEvent event) { Player p = event.getPlayer(); - if (! p.isOp() ) - return; - if (p.getItemInHand().getType() == Material.RAW_FISH) { if ( miners.contains(p.getName()) ) { @@ -85,7 +82,7 @@ Location l = location; for (int x=(radius*-1); x<=radius; x++) { - for (int y=0; y<=radius; y++) { + for (int y=0; y<=(radius*2); y++) { for (int z=(radius*-1); z<=radius; z++) { Block b = world.getBlockAt( l.getBlockX()+x, l.getBlockY()+y, l.getBlockZ()+z);