diff --git a/core/src/com/unciv/ui/worldscreen/WorldScreen.kt b/core/src/com/unciv/ui/worldscreen/WorldScreen.kt index 6faa391300..9c54057d73 100644 --- a/core/src/com/unciv/ui/worldscreen/WorldScreen.kt +++ b/core/src/com/unciv/ui/worldscreen/WorldScreen.kt @@ -565,7 +565,7 @@ class WorldScreen(val gameInfo: GameInfo, val viewingCiv:CivilizationInfo) : Cam nextTurnButton.labelCell.pad(10f) val nextTurnActionWrapped = { nextTurnAction() } nextTurnButton.onClick(nextTurnActionWrapped) - keyPressDispatcher[' '] = nextTurnActionWrapped + keyPressDispatcher[Input.Keys.SPACE] = nextTurnActionWrapped keyPressDispatcher['n'] = nextTurnActionWrapped return nextTurnButton