aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-07-01 17:39:00 +0200
committertpart <tpart120@proton.me>2024-07-01 17:39:00 +0200
commit7d51b58874ff78173f102591f0b03136bb6f49dd (patch)
treeb8e354f1d61b44a77790ea78f3022b3759810fd1 /client
parent86069632184ddaf32dc6cc1f6231e2c9aa46a7df (diff)
downloadhurrycurry-7d51b58874ff78173f102591f0b03136bb6f49dd.tar
hurrycurry-7d51b58874ff78173f102591f0b03136bb6f49dd.tar.bz2
hurrycurry-7d51b58874ff78173f102591f0b03136bb6f49dd.tar.zst
Fix crash when error menu is called
Diffstat (limited to 'client')
-rw-r--r--client/game.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd
index fcab85dd..ca25d77a 100644
--- a/client/game.gd
+++ b/client/game.gd
@@ -42,7 +42,7 @@ func _ready():
mp.connection_closed.connect(func(reason: String):
Global.error_message = reason;
- get_parent().replace_menu("res://menu/error_menu.tscn")
+ get_parent().replace_menu("res://menu/error.tscn")
)
mp.init.connect(func(player_id_: int): player_id = player_id_)