Revert so command zone shown for all game types

This commit is contained in:
drdev
2013-11-29 05:08:25 +00:00
parent a457ff539d
commit 3210f06931

View File

@@ -51,7 +51,8 @@ public enum GameType {
} }
public boolean isCommandZoneNeeded() { public boolean isCommandZoneNeeded() {
switch (this) { return true; //TODO: Figure out way to move command zone into field so it can be hidden when empty
/*switch (this) {
case Archenemy: case Archenemy:
case Commander: case Commander:
case Planechase: case Planechase:
@@ -59,7 +60,6 @@ public enum GameType {
return true; return true;
default: default:
return false; return false;
} }*/
} }
} }