diff options
Diffstat (limited to 'game/src/Game/GameSession/GameSession.gd')
-rw-r--r-- | game/src/Game/GameSession/GameSession.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/Game/GameSession/GameSession.gd b/game/src/Game/GameSession/GameSession.gd index 2a27e3d..305709c 100644 --- a/game/src/Game/GameSession/GameSession.gd +++ b/game/src/Game/GameSession/GameSession.gd @@ -4,7 +4,7 @@ extends Control func _ready(): Events.Options.load_settings_from_file() - if GameSingleton.setup_game() != OK: + if GameSingleton.setup_game(0) != OK: push_error("Failed to setup game") func _process(_delta : float): |