--- miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/chests/AdvancedChest.java 2012/12/11 10:18:25 1903 +++ miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/chests/AdvancedChest.java 2012/12/18 10:33:47 1904 @@ -470,7 +470,7 @@ return; //chest is opened by it's owner } - Set players = Util.stringToSet( chest.getModifyPlayers() ); + Set players = chest.getModifyPlayersSet() ; if ( players.contains(player.getName()) ) { return; //this player is on the whitelist so he may open } @@ -511,7 +511,7 @@ return; //chest is owned by it's own player } - Set players = Util.stringToSet( chest.getModifyPlayers() ); + Set players = chest.getModifyPlayersSet(); if ( players.contains(player.getName()) ) { return; //this player is on the whitelist so he may open }