Skip to content

Commit

Permalink
Fixed wrong xml attribute name
Browse files Browse the repository at this point in the history
  • Loading branch information
evilfactory committed Mar 29, 2024
1 parent 85a6a26 commit 06a226a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public void WriteSettings()
{
XDocument document = new XDocument();
document.Add(new XElement("LuaCsSetupConfig"));
document.Root.Add(new XElement("ForceCsScripting", Config.EnableCsScripting));
document.Root.Add(new XElement("EnableCsScripting", Config.EnableCsScripting));
document.Root.Add(new XElement("TreatForcedModsAsNormal", Config.TreatForcedModsAsNormal));
document.Root.Add(new XElement("PreferToUseWorkshopLuaSetup", Config.PreferToUseWorkshopLuaSetup));
document.Root.Add(new XElement("DisableErrorGUIOverlay", Config.DisableErrorGUIOverlay));
Expand Down

0 comments on commit 06a226a

Please sign in to comment.