diff options
Diffstat (limited to 'scripts/control.gd')
-rw-r--r-- | scripts/control.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/control.gd b/scripts/control.gd index 2e31667..b88874f 100644 --- a/scripts/control.gd +++ b/scripts/control.gd @@ -58,9 +58,9 @@ func build_option (st, sttype): var tname = turret_holder.get_node(editing_turret).info.name for t in load_turrets.get_upg_turrets(tname): opts += [ { "type": "turret upg", "name": t.name } ] - opts += [ { "type": "text", "name": "sell" } ] opts += [ { "type": "text", "name": "priority" } ] opts += [ { "type": "text", "name": "modules" } ] + opts += [ { "type": "text", "name": "sell" } ] opts += [ { "type": "text", "name": "back" } ] gui.bottom_bar.picker.build(opts) |