- Sunlance should be cascadable.

- Fixed Dovescape token controllership bug.
- Fixed Sower of Temptation (AI targeting should happen only once, as it hits play).
This commit is contained in:
jendave
2011-08-06 03:28:17 +00:00
parent 5074982212
commit afe8c8d0c2
3 changed files with 11 additions and 8 deletions

View File

@@ -7411,7 +7411,14 @@ public class CardFactory implements NewConstants {
if((!CardUtil.getColors(card).contains(Constant.Color.White)) && card.isCreature()
&& zone.is(Constant.Zone.Play)) {
spell.setTargetCard(card);
stopSetNext(new Input_PayManaCost(spell));
if (this.isFree())
{
this.setFree(false);
AllZone.Stack.add(spell);
stop();
}
else
stopSetNext(new Input_PayManaCost(spell));
}
}
};//SpellAbility - target