removed special cases where game does not skip even though the skip single choice option is on

master
melvin 2011-06-07 12:44:17 +08:00
parent 102ff9151a
commit 97360b3ec9
1 changed files with 4 additions and 1 deletions

View File

@ -172,13 +172,16 @@ public class MagicGame {
}
public boolean canSkipSingleChoice() {
return GeneralConfig.getInstance().getSkipSingle();
/*
if (GeneralConfig.getInstance().getSkipSingle()) {
if (phase.getType()==MagicPhaseType.DeclareBlockers) {
if (phase.getType()==MagicPhaseType.DeclareBlockers) {
return (turnPlayer!=visiblePlayer||turnPlayer.getNrOfAttackers()==0); //&&stack.isEmpty();
}
return true; //stack.isEmpty();
}
return false;
*/
}
public boolean canSkipSingleManaChoice() {