mirror of
https://github.com/correl/mage.git
synced 2025-04-02 17:00:11 -09:00
Fix failing tests
This commit is contained in:
parent
e1241fa129
commit
56948864ff
2 changed files with 2 additions and 2 deletions
Mage.Sets/src/mage/cards
|
@ -66,7 +66,7 @@ public final class EaterOfVirtue extends CardImpl {
|
|||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new EaterOfVirtueGainAbilityAttachedEffect()));
|
||||
|
||||
// Equip {1}
|
||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(1)));
|
||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(1), false));
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ public final class SoulstealerAxe extends CardImpl {
|
|||
));
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(2));
|
||||
this.addAbility(new EquipAbility(2, false));
|
||||
}
|
||||
|
||||
private SoulstealerAxe(final SoulstealerAxe card) {
|
||||
|
|
Loading…
Add table
Reference in a new issue