mirror of
https://github.com/yairm210/Unciv.git
synced 2025-02-11 11:28:03 +07:00
Fix multiplayer turn checker option not showing up on Android (#7844)
It should *only* show up on Android, this was caused by a logic fail in a refactoring.
This commit is contained in:
parent
496f3fe86e
commit
72d0f2b6b7
@ -68,7 +68,7 @@ fun multiplayerTab(
|
||||
|
||||
// at the moment the notification service only exists on Android
|
||||
val turnCheckerSelect: RefreshSelect?
|
||||
if (Gdx.app.type != Application.ApplicationType.Android) {
|
||||
if (Gdx.app.type == Application.ApplicationType.Android) {
|
||||
turnCheckerSelect = addTurnCheckerOptions(tab, optionsPopup)
|
||||
addSeparator(tab)
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user