ObjectColor objects are mutable, so let's not assign the 'constant' ones to variables

This commit is contained in:
Alex W. Jackson 2021-10-29 13:56:48 -04:00
parent 096a2868a9
commit 91176a19dd
13 changed files with 16 additions and 19 deletions

View file

@ -19,7 +19,7 @@ public final class ThatcherHumanToken extends TokenImpl {
this.subtype.add(SubType.HUMAN);
addAbility(HasteAbility.getInstance());
this.color = ObjectColor.RED;
this.color.setRed(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
}