- Do not offer Gauntlet-style "Next Round" option when playing a single Sealed/Draft match vs. a specific opponent in mobile Forge.

This commit is contained in:
Agetian
2017-01-30 15:00:12 +00:00
parent c12d530b65
commit f09be0ea5d
2 changed files with 2 additions and 0 deletions

View File

@@ -158,6 +158,7 @@ public class LoadDraftScreen extends LaunchScreen {
pl.assignConspiracies(); pl.assignConspiracies();
} }
FModel.getGauntletMini().resetGauntletDraft();
final HostedMatch hostedMatch = GuiBase.getInterface().hostMatch(); final HostedMatch hostedMatch = GuiBase.getInterface().hostMatch();
hostedMatch.startMatch(GameType.Draft, null, starter, human, GuiBase.getInterface().getNewGuiGame()); hostedMatch.startMatch(GameType.Draft, null, starter, human, GuiBase.getInterface().getNewGuiGame());
} }

View File

@@ -151,6 +151,7 @@ public class LoadSealedScreen extends LaunchScreen {
pl.assignConspiracies(); pl.assignConspiracies();
} }
FModel.getGauntletMini().resetGauntletDraft();
final HostedMatch hostedMatch = GuiBase.getInterface().hostMatch(); final HostedMatch hostedMatch = GuiBase.getInterface().hostMatch();
hostedMatch.startMatch(GameType.Sealed, null, starter, human, GuiBase.getInterface().getNewGuiGame()); hostedMatch.startMatch(GameType.Sealed, null, starter, human, GuiBase.getInterface().getNewGuiGame());
} }