Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions forge-gui-mobile/src/forge/adventure/scene/NewGameScene.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,6 @@ private NewGameScene() {
AdventureModes.Custom.setModes(custom);
}

// Commander game mode in selection screen
modes.add(AdventureModes.Commander);
AdventureModes.Commander.setSelectionName(colorIdLabel);
AdventureModes.Commander.setModes(colorNames);

String[] modeNames = new String[modes.size];
int constructedIndex = -1;

Expand Down Expand Up @@ -469,7 +464,7 @@ private void showModeHelp() {
summaryText.append("Mode: Commander\n\nYou will be given a preconstructed commander deck based on the chosen color theme to start the playthrough.\n\nGood luck on your quest of creating a coherent deck that can win consistently and defeat the bosses.");
break;
default:
summaryText.append("No summary available for your this game mode.");
summaryText.append("No summary available for this game mode.");
break;
}

Expand Down
Loading