diff options
| author | tpart <tpart120@proton.me> | 2024-06-26 16:22:54 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2024-06-26 16:22:54 +0200 |
| commit | 5d280643f19196d4eab75d2cd0980258fb7af649 (patch) | |
| tree | 329cfdbdf15fa6e08f3eef74017d235c95a9c318 /client/menu/ingame_menu.gd | |
| parent | 8dfe99686938995c9d1d8ff4499fab31ef61681a (diff) | |
| download | hurrycurry-5d280643f19196d4eab75d2cd0980258fb7af649.tar hurrycurry-5d280643f19196d4eab75d2cd0980258fb7af649.tar.bz2 hurrycurry-5d280643f19196d4eab75d2cd0980258fb7af649.tar.zst | |
Fix ingame menu redirecting to wrong scene
Diffstat (limited to 'client/menu/ingame_menu.gd')
| -rw-r--r-- | client/menu/ingame_menu.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/ingame_menu.gd b/client/menu/ingame_menu.gd index 9987f8ca..4752c382 100644 --- a/client/menu/ingame_menu.gd +++ b/client/menu/ingame_menu.gd @@ -14,7 +14,7 @@ func deact(): hide() func _on_main_menu_pressed(): - get_parent().transition_to("res://menu/main_menu.tscn") + get_parent().transition_to("res://menu/menu_manager.tscn") func _on_quit_pressed(): get_parent().quit() |