--- miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/SnitchingChest.java 2012/04/05 12:40:27 1774 +++ miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/SnitchingChest.java 2012/04/05 12:50:15 1775 @@ -241,6 +241,11 @@ if (holder instanceof Chest || holder instanceof DoubleChest) { Location loc = getChestLocation(holder); SnitchingChestBean chest = chestMap.get(loc); + + if (chest == null) { //chest was not a snitching chest + return; + } + OfflinePlayer owner = server.getOfflinePlayer( chest.getOwner() );