mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Vizier of the Menagerie - Fixed that the cards from library could be cast at instant speed.
This commit is contained in:
parent
73a99d125b
commit
917111b664
1 changed files with 2 additions and 1 deletions
|
@ -150,7 +150,8 @@ class VizierOfTheMenagerieTopCardCastEffect extends AsThoughEffectImpl {
|
|||
&& topCard != null) {
|
||||
if (topCard == card
|
||||
&& topCard.isCreature()
|
||||
&& game.canPlaySorcery(controller.getId())) {
|
||||
&& topCard.getSpellAbility() != null
|
||||
&& topCard.getSpellAbility().spellCanBeActivatedRegularlyNow(controller.getId(), game)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue