Skip to content

Commit

Permalink
Merge pull request #4473 from jjayers99/master
Browse files Browse the repository at this point in the history
Adventure - Enable "Continue" button for BO3 duels
  • Loading branch information
jjayers99 authored Jan 3, 2024
2 parents 13cf081 + ebf2ed5 commit d2a9c6b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import java.util.List;

import forge.game.GameType;
import org.apache.commons.lang3.StringUtils;

import com.badlogic.gdx.Input.Keys;
Expand Down Expand Up @@ -201,7 +200,7 @@ protected void doLayout(float width, float height) {

h = height / 12;
if (Forge.isMobileAdventureMode) {
if (game.getGameType() == GameType.AdventureEvent) {
if (game.getNumGamesInMatch() > 1) {
btnContinue.setBounds(x, y, w, h);
y += h + dy;
}
Expand Down

0 comments on commit d2a9c6b

Please sign in to comment.