Fixed Silent-Blade Oni only allowing controller to cast instants and sorceries

This commit is contained in:
PurpleCrowbar 2022-08-25 04:50:05 +01:00
parent dca1b5e110
commit f46269b7b0
2 changed files with 2 additions and 2 deletions

View file

@ -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
);
}
}

View file

@ -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
);
}
}