--- miscJava/minecraft-plugins/hoeruputils/src/AdminDestroy.java 2010/11/20 08:59:03 1196 +++ miscJava/hmod-minecraft-plugins/hoeruputils/src/AdminDestroy.java 2011/03/20 13:39:37 1234 @@ -4,7 +4,7 @@ public class AdminDestroy extends PluginListener { - final static Logger log = Logger.getLogger("HoerupUtils"); + final static Logger log = Logger.getLogger("Minecraft"); //private boolean adminDestroy = false; private Set adminDestroyers = new HashSet(); @@ -19,7 +19,7 @@ @Override public boolean onBlockDestroy(Player player, Block block) { - if (player.isAdmin() && adminDestroyers.contains(player.getName() ) ) { + if (adminDestroyers.contains(player.getName() ) ) { if (player.getItemInHand() == HAND_EMPTY) { int oldType = block.getType();