diff --git a/CommandWhitelistCommon/src/main/java/eu/endermite/commandwhitelist/common/ConfigCache.java b/CommandWhitelistCommon/src/main/java/eu/endermite/commandwhitelist/common/ConfigCache.java index 9fef4bf..2eccf81 100644 --- a/CommandWhitelistCommon/src/main/java/eu/endermite/commandwhitelist/common/ConfigCache.java +++ b/CommandWhitelistCommon/src/main/java/eu/endermite/commandwhitelist/common/ConfigCache.java @@ -89,7 +89,7 @@ public class ConfigCache { ConfigSection groupSection = config.getConfigSection("groups"); for (String key : groupSection.getKeys(false)) { - groupList.put("key", loadCWGroup(key, groupSection)); + groupList.put(key, loadCWGroup(key, groupSection)); } return saveConfig();