mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-04 23:40:01 +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:
@ -68,7 +68,7 @@ fun multiplayerTab(
|
|||||||
|
|
||||||
// at the moment the notification service only exists on Android
|
// at the moment the notification service only exists on Android
|
||||||
val turnCheckerSelect: RefreshSelect?
|
val turnCheckerSelect: RefreshSelect?
|
||||||
if (Gdx.app.type != Application.ApplicationType.Android) {
|
if (Gdx.app.type == Application.ApplicationType.Android) {
|
||||||
turnCheckerSelect = addTurnCheckerOptions(tab, optionsPopup)
|
turnCheckerSelect = addTurnCheckerOptions(tab, optionsPopup)
|
||||||
addSeparator(tab)
|
addSeparator(tab)
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user