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:
Timo T
2022-09-21 15:58:20 +02:00
committed by GitHub
parent 496f3fe86e
commit 72d0f2b6b7

View File

@ -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 {