added setArtificial to MagicGame

master
melvin 2011-06-17 10:36:03 +08:00
parent 55af4dfb0c
commit 36914fb564
1 changed files with 4 additions and 6 deletions

View File

@ -177,9 +177,6 @@ public class MagicGame {
long[] input = {
turn,
phase.getType().ordinal(),
step.ordinal(),
priorityPassedCount,
landPlayed,
players[0].getPlayerId(),
players[1].getPlayerId(),
};
@ -190,9 +187,6 @@ public class MagicGame {
return "\n" +
turn + " " +
phase.getType() + " " +
step + " " +
priorityPassedCount + " " +
landPlayed + " " +
"\n" +
players[0].getIdString() +
"\n" +
@ -246,6 +240,10 @@ public class MagicGame {
return artificial;
}
public void setArtificial(final boolean art) {
artificial = art;
}
public boolean isSound() {
return sound;
}