Fixed missing variables in copy constructor

This commit is contained in:
Daniel Bomar 2021-01-22 18:34:10 -06:00
parent d0696a2890
commit c5dc43630f
No known key found for this signature in database
GPG key ID: C86C8658F4023918

View file

@ -122,6 +122,8 @@ public abstract class AbilityImpl implements Ability {
} }
this.customOutcome = ability.customOutcome; this.customOutcome = ability.customOutcome;
this.identifier = ability.identifier; this.identifier = ability.identifier;
this.activated = ability.activated;
this.appendToRule = ability.appendToRule;
} }
@Override @Override