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

This commit is contained in:
Luck 2017-11-25 12:45:57 +00:00
parent 717835e5c1
commit c5c253af4e
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B

View File

@ -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;