* Vizier of the Menagerie - Fixed that the cards from library could be cast at instant speed.

This commit is contained in:
LevelX2 2017-05-16 10:05:17 +02:00
parent 73a99d125b
commit 917111b664

View file

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