removed special cases where game does not skip even though the skip single choice option is on
parent
102ff9151a
commit
97360b3ec9
|
@ -172,13 +172,16 @@ public class MagicGame {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean canSkipSingleChoice() {
|
public boolean canSkipSingleChoice() {
|
||||||
|
return GeneralConfig.getInstance().getSkipSingle();
|
||||||
|
/*
|
||||||
if (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 (turnPlayer!=visiblePlayer||turnPlayer.getNrOfAttackers()==0); //&&stack.isEmpty();
|
||||||
}
|
}
|
||||||
return true; //stack.isEmpty();
|
return true; //stack.isEmpty();
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean canSkipSingleManaChoice() {
|
public boolean canSkipSingleManaChoice() {
|
||||||
|
|
Loading…
Reference in New Issue