- missing "removedFromGame" initialization fixed (see celestial_purge test)
This commit is contained in:
wagic.the.homebrew
2009-02-07 02:43:42 +00:00
parent 6ea40147a3
commit 391bdaf0d8
3 changed files with 21 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ ascendant_evincar.txt
ascendant_evincar2.txt
brass_man.txt
castle.txt
celestial_purge.txt
circle_of_protection.txt
composite_golem.txt
control_magic.txt

View File

@@ -0,0 +1,18 @@
#Testing Celestial purge on Canyon Minotaur
[INIT]
FIRSTMAIN
[PLAYER1]
hand:183055
manapool:{1}{W}
[PLAYER2]
inplay:184994
[DO]
183055
184994
[ASSERT]
FIRSTMAIN
[PLAYER1]
graveyard:183055
manapool:{0}
[PLAYER2]
[END]

View File

@@ -59,6 +59,8 @@ void MTGPlayerCards::init(){
hand = NEW MTGHand();
inPlay = NEW MTGInPlay();
stack = NEW MTGStack();
stack = NEW MTGStack();
removedFromGame = NEW MTGRemovedFromGame();
}