Fixed more instances of missing sub abilities

This commit is contained in:
Daniel Bomar 2021-10-22 19:12:19 -05:00
parent 060ea7da83
commit 5a6bfb710e
No known key found for this signature in database
GPG key ID: C86C8658F4023918
3 changed files with 3 additions and 3 deletions

View file

@ -2298,6 +2298,7 @@ public abstract class PlayerImpl implements Player, Serializable {
public void addAbility(Ability ability) {
ability.setSourceId(playerId);
this.abilities.add(ability);
this.abilities.addAll(ability.getSubAbilities());
}
@Override