--- miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/SnitchingChestBean.java 2012/04/05 21:15:30 1784 +++ miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/SnitchingChestBean.java 2012/04/06 09:51:01 1785 @@ -21,6 +21,10 @@ int y; int z; + boolean doublechest = false; + + + @@ -76,6 +80,12 @@ public void setZ(int z) { this.z = z; } - + public boolean isDoublechest() { + return doublechest; + } + public void setDoublechest(boolean doublechest) { + this.doublechest = doublechest; + } + }