Psyringe - fixed Enchantress's Presence (ONS). Triggers which fire upon "playing a card" need to be coded with "from(mystack), not "from(myhand)" - the latter would only trigger if you put the card into play without casting it.

Thanks to TheDark for the bug report.
This commit is contained in:
Psyyringe
2009-12-26 18:43:16 +00:00
parent 086dab7a7a
commit f57aacd020
2 changed files with 6 additions and 7 deletions

View File

@@ -424,7 +424,7 @@ toughness=1
[/card]
[card]
text=Whenever you play an enchantment spell, draw a card.
auto=@movedTo(enchantment|myBattlefield) from(myhand):draw:1
auto=@movedTo(enchantment|myBattlefield) from(mystack):draw:1
id=35514
name=Enchantress's Presence
rarity=R

View File

@@ -1,22 +1,21 @@
#NAME: Enchantress's Presence
#DESC: Bug report: Playing an
#DESC: enchantment doesn't draw
#DESC: you a card. Bug could not
#DESC: be reproduced.
#DESC: you a card.
[INIT]
firstmain
[PLAYER1]
inplay:Enchantress's Presence
hand:Ground Seal
hand:Briar Patch
library:Forest
manapool:{G}{G}
manapool:{G}{G}{G}
[PLAYER2]
[DO]
Ground Seal
Briar Patch
[ASSERT]
firstmain
[PLAYER1]
inplay:Enchantress's Presence,Ground Seal
inplay:Enchantress's Presence,Briar Patch
hand:Forest
[PLAYER2]
[END]