mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-01-17 00:06:00 -05:00
Merge pull request #204 from madsboddum/200
Fixed issue where spent expertise points weren't displayed to the pla…
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user