summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2025-08-08 21:41:13 +0200
committertpart <tpart120@proton.me>2025-08-08 21:41:13 +0200
commite5eff9877ece5730679af9f33d02a69dc2006784 (patch)
treea997f54438207d4482cdc34a1de3a344d0dcce8f
parentd55caf30cda9e0ffc2608b5d5c2c1b0b9199371f (diff)
downloadhurrycurry-e5eff9877ece5730679af9f33d02a69dc2006784.tar
hurrycurry-e5eff9877ece5730679af9f33d02a69dc2006784.tar.bz2
hurrycurry-e5eff9877ece5730679af9f33d02a69dc2006784.tar.zst
Fix game crash when popup opens (Oops!)
-rw-r--r--client/menu/popup.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/menu/popup.gd b/client/menu/popup.gd
index ff3e089e..d4849e92 100644
--- a/client/menu/popup.gd
+++ b/client/menu/popup.gd
@@ -16,8 +16,8 @@
extends Menu
class_name MenuPopup
-@onready var message := $CenterContainer/Panel/MarginContainer/VBoxContainer/Message
-@onready var button_container := $CenterContainer/Panel/MarginContainer/VBoxContainer/HBoxContainer
+@onready var message := $MarginContainer/CenterContainer/Panel/MarginContainer/VBoxContainer/Message
+@onready var button_container := $MarginContainer/CenterContainer/Panel/MarginContainer/VBoxContainer/HBoxContainer
class Data:
var buttons: Array[Button]