- Bugfix for Suspend trying to move Spell to Stack that's already moved

- Convert Ancestral Vision to AF_Draw and remove from AI decks since Suspend currently returns false.
This commit is contained in:
jendave
2011-08-06 12:07:04 +00:00
parent 19463caece
commit f84e45417f
3 changed files with 10 additions and 6 deletions

View File

@@ -4,8 +4,9 @@ Types:Sorcery
Text:no text Text:no text
K:CARDNAME is blue. K:CARDNAME is blue.
K:Suspend:4:U K:Suspend:4:U
K:spDrawCardsTgt:3:Target player draws three cards.:CARDNAME - draw 3 cards. A:SP$Draw | Cost$ 0 | NumCards$ 3 | ValidTgts$ Player | TgtPrompt$ Choose a player to draw three cards | SpellDescription$ Target player draws three cards. | ActivationLimit$ 0
SVar:Rarity:Rare SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/ancestral_vision.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/ancestral_vision.jpg
SVar:RemAIDeck:True
SetInfo:TSP|Rare|http://magiccards.info/scans/en/ts/48.jpg SetInfo:TSP|Rare|http://magiccards.info/scans/en/ts/48.jpg
End End

View File

@@ -385,6 +385,7 @@ public class Card extends MyObservable {
c.addComesIntoPlayCommand(intoPlay); c.addComesIntoPlayCommand(intoPlay);
AllZone.GameAction.playCardNoCost(c); AllZone.GameAction.playCardNoCost(c);
if (AllZone.getZone(c) != null)
AllZone.getZone(c).remove(c); AllZone.getZone(c).remove(c);
} }
} }

View File

@@ -1813,6 +1813,8 @@ public class CardFactoryUtil {
@Override @Override
public boolean canPlayAI() { public boolean canPlayAI() {
return false; return false;
// Suspend currently not functional for the AI,
// seems to be an issue with regaining Priority after Suspension
} }
@Override @Override