mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-04 08:59:47 +01:00
Better save disguises, avoid nulls
This commit is contained in:
parent
3d78b493bc
commit
ee2fef7450
@ -76,15 +76,14 @@ public class DisguiseUtilities {
|
||||
private static BackwardMethods methods;
|
||||
|
||||
public static void saveDisguises() {
|
||||
Iterator<HashSet<TargetedDisguise>> itel = disguisesInUse.values().iterator();
|
||||
for (HashSet<TargetedDisguise> list : disguisesInUse.values()) {
|
||||
for (TargetedDisguise disg : list) {
|
||||
if (disg.getEntity() == null)
|
||||
continue;
|
||||
|
||||
while (itel.hasNext()) {
|
||||
HashSet<TargetedDisguise> list = itel.next();
|
||||
|
||||
if (list.isEmpty())
|
||||
continue;
|
||||
|
||||
saveDisguises(list.iterator().next().getEntity().getUniqueId(), list.toArray(new Disguise[0]));
|
||||
saveDisguises(disg.getEntity().getUniqueId(), list.toArray(new Disguise[0]));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user