aboutsummaryrefslogtreecommitdiff
path: root/client/service/editor.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-15 01:26:13 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-15 01:38:34 +0200
commit676d4dcb6c439677b91b1b5cbc0bf08f98e2dd9d (patch)
tree5cd83591e230833735fbdacf41df5c1d69dd8c0e /client/service/editor.gd
parent4e196b83a42b9b217e3b7107b55a14cb1a005b84 (diff)
downloadhurrycurry-676d4dcb6c439677b91b1b5cbc0bf08f98e2dd9d.tar
hurrycurry-676d4dcb6c439677b91b1b5cbc0bf08f98e2dd9d.tar.bz2
hurrycurry-676d4dcb6c439677b91b1b5cbc0bf08f98e2dd9d.tar.zst
Refactor settings; store as JSON; input settings now broken
Diffstat (limited to 'client/service/editor.gd')
-rw-r--r--client/service/editor.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/service/editor.gd b/client/service/editor.gd
index 262f6fca..2197a5e1 100644
--- a/client/service/editor.gd
+++ b/client/service/editor.gd
@@ -23,7 +23,7 @@ func arguments():
return []
func exe_path() -> String:
- var path: String = Global.get_setting("server.editor_binary_path")
+ var path: String = Settings.read("server.editor_binary_path")
if path != "": return path
else: return "hurrycurry-editor"