diff --git a/src/de/diddiz/LogBlock/Config.java b/src/de/diddiz/LogBlock/Config.java index ebfa850..9727de5 100644 --- a/src/de/diddiz/LogBlock/Config.java +++ b/src/de/diddiz/LogBlock/Config.java @@ -167,7 +167,7 @@ public class Config throw new DataFormatException("lookup.toolblockID doesn't appear to be a valid log level. Allowed are 'PLAYERS', 'MONSTERS' and 'ANIMALS'"); } hiddenPlayers = new HashSet(); - for (final String playerName : config.getStringList("hiddenPlayers", new ArrayList())) + for (final String playerName : config.getStringList("logging.hiddenPlayers", new ArrayList())) hiddenPlayers.add(playerName.hashCode()); dontRollback = new HashSet(config.getIntList("rollback.dontRollback", null)); replaceAnyway = new HashSet(config.getIntList("rollback.replaceAnyway", null));