mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fixed Silent-Blade Oni only allowing controller to cast instants and sorceries
This commit is contained in:
parent
dca1b5e110
commit
f46269b7b0
2 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@ class MindleechMassEffect extends OneShotEffect {
|
|||
controller.lookAtCards(opponent.getName(), opponent.getHand(), game);
|
||||
return CardUtil.castSpellWithAttributesForFree(
|
||||
controller, source, game, new CardsImpl(opponent.getHand()),
|
||||
StaticFilters.FILTER_CARD_INSTANT_OR_SORCERY
|
||||
StaticFilters.FILTER_CARD_NON_LAND
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -78,7 +78,7 @@ class SilentBladeOniEffect extends OneShotEffect {
|
|||
controller.lookAtCards(opponent.getName(), opponent.getHand(), game);
|
||||
return CardUtil.castSpellWithAttributesForFree(
|
||||
controller, source, game, new CardsImpl(opponent.getHand()),
|
||||
StaticFilters.FILTER_CARD_INSTANT_OR_SORCERY
|
||||
StaticFilters.FILTER_CARD_NON_LAND
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue