diff options
author | tpart <tpart120@proton.me> | 2024-07-14 15:09:48 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-07-14 15:09:48 +0200 |
commit | 5dc500c9cbb1bb0580b2efce7e8bb986e0ba541a (patch) | |
tree | 97070021e2a2917164ac88a7478591c271b93bcb /client/menu/popup_message.gd | |
parent | a44e6c9acab5b341814977a8fe0a0416c357618d (diff) | |
download | hurrycurry-5dc500c9cbb1bb0580b2efce7e8bb986e0ba541a.tar hurrycurry-5dc500c9cbb1bb0580b2efce7e8bb986e0ba541a.tar.bz2 hurrycurry-5dc500c9cbb1bb0580b2efce7e8bb986e0ba541a.tar.zst |
Fix: Move menus from game.tscn to menu/game.tscn to prevent wrong 2D order
Diffstat (limited to 'client/menu/popup_message.gd')
-rw-r--r-- | client/menu/popup_message.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/popup_message.gd b/client/menu/popup_message.gd index 1748f59a..480a7591 100644 --- a/client/menu/popup_message.gd +++ b/client/menu/popup_message.gd @@ -32,7 +32,7 @@ var is_joined := false @onready var reset_timer = $Reset -@onready var game: Game = get_parent() +@onready var game: Game = $"../Game" func _ready(): game.joined.connect( |