Skip to content
This repository was archived by the owner on May 30, 2026. It is now read-only.

Commit 4e0715e

Browse files
committed
HOTFIX : Setting SafeCommandParse mistake
1 parent 543bbba commit 4e0715e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Overlayer/Views/SettingsDrawer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public override void Draw() {
208208
Drawer.HoverTooltip(Main.Lang.Get("AUTO_PIVOT_DESC", "Automatically adjusts the pivot to match the text alignment.\nWhen the editor is in Simple mode, this is always enabled regardless of settings"));
209209
Drawer.DrawBool(Main.Lang.Get("INCLUDE_REFERENCES", "Include References"), ref model.IncludeReferences);
210210
Drawer.HoverTooltip(Main.Lang.Get("INCLUDE_REFERENCES_DESC", "When this setting is enabled,\nelements that rely on external files(such as fonts and images)\nwill be included directly in the JSON file export.\n\nThis may increase the file size"));
211-
Drawer.DrawBool(string.Format(Main.Lang.Get("USE_THIS", "Use {0}"), string.Format(Main.Lang.Get("SAFE_COMMAND_PARSE", "Safe Command Parse"))), ref model.FileAttempt);
211+
Drawer.DrawBool(string.Format(Main.Lang.Get("USE_THIS", "Use {0}"), string.Format(Main.Lang.Get("SAFE_COMMAND_PARSE", "Safe Command Parse"))), ref model.SafeCommandParse);
212212
Drawer.HoverTooltip(Main.Lang.Get("SAFE_COMMAND_PARSE_DESC", "Parses commands safely by catching errors.\nReturns a default value instead of throwing exceptions on failure.\n\nMay hide underlying errors"));
213213
if(Drawer.DrawBool(string.Format(Main.Lang.Get("USE_THIS", "Use {0}"), string.Format(Main.Lang.Get("FILE_ATTEMPT", "File Attempt"))), ref model.FileAttempt)) {
214214
if(model.FileAttempt) {

0 commit comments

Comments
 (0)