From 6e3b47f5be9ce1aa826a4a4dafea87dc4d7ef479 Mon Sep 17 00:00:00 2001 From: Robin Kupper Date: Thu, 9 Jun 2011 20:47:57 +0200 Subject: [PATCH] Fixed hiddenPlayers --- src/de/diddiz/LogBlock/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));