mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2025-02-05 13:00:30 +08:00
Fixed bad list to array conversion in ConfigurationPermissionsResolver.
This commit is contained in:
parent
f05e31c8e9
commit
e2672e128c
@ -111,6 +111,6 @@ public String[] getGroups(String player) {
|
||||
return new String[0];
|
||||
}
|
||||
|
||||
return (String[])groups.toArray();
|
||||
return groups.toArray(new String[groups.size()]);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user