Fix bug when loading maps from the BungeeConfigAdapter (#563)

This commit is contained in:
Luck
2017-11-25 12:45:57 +00:00
Unverified
parent 717835e5c1
commit c5c253af4e
@@ -119,7 +119,7 @@ public class BungeeConfigAdapter implements ConfigurationAdapter {
}
for (String key : section.getKeys()) {
map.put(key, section.getString(key));
map.put(key, section.get(key).toString());
}
return map;