bug: when life increased from 4 to 20, Act of Treason played in second main instead of first main

master
melvin 2012-06-14 14:53:25 +08:00
parent 5e8d202924
commit 650a2fc0ed
1 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ class TestDungeonGeists extends TestGameBuilder {
MagicPlayer P = player;
P.setLife(4);
P.setLife(20);
addToLibrary(P, "Plains", 10);
createPermanent(game,P,"Rupture Spire",false,8);
addToHand(P,"Dungeon Geists",1);
@ -33,10 +33,10 @@ class TestDungeonGeists extends TestGameBuilder {
P = opponent;
P.setLife(4);
P.setLife(20);
addToLibrary(P, "Plains", 10);
createPermanent(game,P,"Rupture Spire",false,8);
createPermanent(game,P,"Darkslick Drake",false,1);
createPermanent(game,P,"Serra Angel",false,1);
addToHand(P,"Act of Treason",1);
return game;