mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-23 09:37:50 +01:00
Remove attachments before clearing
This commit is contained in:
parent
27ff43c0ac
commit
eacb847305
@ -103,6 +103,15 @@ public class BukkitPermissions {
|
||||
}
|
||||
|
||||
public void reset() {
|
||||
|
||||
/*
|
||||
* Remove all attachments.
|
||||
*/
|
||||
for (String key : attachments.keySet()) {
|
||||
attachments.get(key).remove();
|
||||
attachments.remove(key);
|
||||
}
|
||||
|
||||
attachments = new WeakHashMap<String, PermissionAttachment>();
|
||||
|
||||
this.collectPermissions();
|
||||
|
Loading…
Reference in New Issue
Block a user