diff options
Diffstat (limited to 'client/service/editor.gd')
-rw-r--r-- | client/service/editor.gd | 2 |
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" |