diff options
author | tpart <tpart120@proton.me> | 2024-10-13 12:29:14 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-10-13 12:29:14 +0200 |
commit | 3d456968cfed17b614aca64fe25ffc74d9753c0b (patch) | |
tree | 11e68d6702bc3cfd4308c04cca6c2c3ad2dfec25 | |
parent | 605928c65aa2b245d17410e4415a8f22a2595fae (diff) | |
download | hurrycurry-3d456968cfed17b614aca64fe25ffc74d9753c0b.tar hurrycurry-3d456968cfed17b614aca64fe25ffc74d9753c0b.tar.bz2 hurrycurry-3d456968cfed17b614aca64fe25ffc74d9753c0b.tar.zst |
Flip order of allow and deny button
-rw-r--r-- | client/menu/play.gd | 2 |
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() |