--- miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/chests/ChestBean.java 2012/11/05 21:46:57 1868 +++ miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/chests/ChestBean.java 2012/11/06 16:49:06 1869 @@ -31,6 +31,7 @@ int chestType; + String comment = ""; @@ -105,5 +106,12 @@ public void setModifyPlayers(String modifyPlayers) { this.modifyPlayers = modifyPlayers; } + + public String getComment() { + return comment; + } + public void setComment(String comment) { + this.comment = comment; + } }