added test for continuous effects + modified tests to stop on specified turn and step

This commit is contained in:
BetaSteward 2012-02-06 10:06:25 -05:00
parent 79be305eb9
commit 4fd59f9e8c
9 changed files with 101 additions and 6 deletions

View file

@ -1,6 +1,7 @@
package mage.game;
import java.io.Serializable;
import mage.Constants.PhaseStep;
/**
* Game options for Mage game.
@ -26,4 +27,10 @@ public class GameOptions implements Serializable {
* By default, is null meaning that game shouldn't stop on any specific turn.
*/
public Integer stopOnTurn = null;
/**
* Stop at the end of the turn if true otherwise stop at the beginning
*/
public PhaseStep stopAtStep = PhaseStep.UNTAP;
}