mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 11:38:40 +01:00
Fix bug when loading maps from the BungeeConfigAdapter (#563)
This commit is contained in:
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;
|
||||
|
Loading…
Reference in New Issue
Block a user