Skip to content

Commit

Permalink
Adventure - Enable "Continue" button for BO3 duels
Browse files Browse the repository at this point in the history
  • Loading branch information
jjayers99 committed Jan 3, 2024
1 parent 3de20ad commit b65e3a3
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,16 +201,10 @@ protected void doLayout(float width, float height) {

h = height / 12;
if (Forge.isMobileAdventureMode) {
if (game.getGameType() == GameType.AdventureEvent) {
btnContinue.setBounds(x, y, w, h);
y += h + dy;
}
else{
btnContinue.setVisible(false);
}
btnContinue.setBounds(x, y, w, h);
y += h + dy;
btnQuit.setBounds(x, y, w, h);
y += h + dy;

btnRestart.setVisible(false);
} else {
if (btnContinue.isEnabled()) {
Expand Down

0 comments on commit b65e3a3

Please sign in to comment.