Merge pull request #204 from madsboddum/200

Fixed issue where spent expertise points weren't displayed to the pla…
This commit is contained in:
Josh Larson
2020-04-02 13:55:07 -04:00
committed by GitHub

View File

@@ -99,6 +99,17 @@ public class SWGSet<E> extends CopyOnWriteArraySet<E> implements Encodable {
return true;
}
@Override
public boolean addAll(Collection<? extends E> c) {
boolean changed = false;
for (E e : c) {
changed |= add(e);
}
return changed;
}
@Override
public boolean remove(Object o) {
if (!super.remove(o))