summaryrefslogtreecommitdiff
path: root/client/menu
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-10-13 12:29:14 +0200
committertpart <tpart120@proton.me>2024-10-13 12:29:14 +0200
commit3d456968cfed17b614aca64fe25ffc74d9753c0b (patch)
tree11e68d6702bc3cfd4308c04cca6c2c3ad2dfec25 /client/menu
parent605928c65aa2b245d17410e4415a8f22a2595fae (diff)
downloadhurrycurry-3d456968cfed17b614aca64fe25ffc74d9753c0b.tar
hurrycurry-3d456968cfed17b614aca64fe25ffc74d9753c0b.tar.bz2
hurrycurry-3d456968cfed17b614aca64fe25ffc74d9753c0b.tar.zst
Flip order of allow and deny button
Diffstat (limited to 'client/menu')
-rw-r--r--client/menu/play.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/play.gd b/client/menu/play.gd
index 3d9a0d84..3297aa6d 100644
--- a/client/menu/play.gd
+++ b/client/menu/play.gd
@@ -49,7 +49,7 @@ func _ready():
deny_button.text = tr("c.menu.deny")
allow_button.pressed.connect(func(): Global.set_setting("online.use_registry", true))
deny_button.pressed.connect(func(): Global.set_setting("online.use_registry", false))
- popup_data.buttons = [deny_button, allow_button]
+ popup_data.buttons = [allow_button, deny_button]
await submenu("res://menu/popup.tscn", popup_data)
Global.set_profile("registry_asked", true)
Global.save_settings()