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
+1 -1
View File
@@ -424,7 +424,7 @@ toughness=1
[/card] [/card]
[card] [card]
text=Whenever you play an enchantment spell, draw a 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 id=35514
name=Enchantress's Presence name=Enchantress's Presence
rarity=R rarity=R
@@ -1,22 +1,21 @@
#NAME: Enchantress's Presence #NAME: Enchantress's Presence
#DESC: Bug report: Playing an #DESC: Bug report: Playing an
#DESC: enchantment doesn't draw #DESC: enchantment doesn't draw
#DESC: you a card. Bug could not #DESC: you a card.
#DESC: be reproduced.
[INIT] [INIT]
firstmain firstmain
[PLAYER1] [PLAYER1]
inplay:Enchantress's Presence inplay:Enchantress's Presence
hand:Ground Seal hand:Briar Patch
library:Forest library:Forest
manapool:{G}{G} manapool:{G}{G}{G}
[PLAYER2] [PLAYER2]
[DO] [DO]
Ground Seal Briar Patch
[ASSERT] [ASSERT]
firstmain firstmain
[PLAYER1] [PLAYER1]
inplay:Enchantress's Presence,Ground Seal inplay:Enchantress's Presence,Briar Patch
hand:Forest hand:Forest
[PLAYER2] [PLAYER2]
[END] [END]