mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Fix Sword of Once and Future (#10292)
This commit is contained in:
parent
aaa92d5e46
commit
09464ef934
1 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ class SwordOfOnceAndFutureCastEffect extends OneShotEffect {
|
||||||
private static final FilterCard filter = new FilterInstantOrSorceryCard();
|
private static final FilterCard filter = new FilterInstantOrSorceryCard();
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(new ManaValuePredicate(ComparisonType.FEWER_THAN, 2));
|
filter.add(new ManaValuePredicate(ComparisonType.FEWER_THAN, 3));
|
||||||
}
|
}
|
||||||
|
|
||||||
SwordOfOnceAndFutureCastEffect() {
|
SwordOfOnceAndFutureCastEffect() {
|
||||||
|
@ -97,7 +97,7 @@ class SwordOfOnceAndFutureCastEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return CardUtil.castSpellWithAttributesForFree(
|
return CardUtil.castSpellWithAttributesForFree(
|
||||||
player, source, game, new CardsImpl(player.getHand()),
|
player, source, game, new CardsImpl(player.getGraveyard()),
|
||||||
filter, SwordOfOnceAndFutureTracker.instance
|
filter, SwordOfOnceAndFutureTracker.instance
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue