Skip to content

Commit

Permalink
Var Fix in UserSettings.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
adelinadragonborn authored Dec 5, 2024
1 parent 45f8ce3 commit 6fb8fd8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.IO;
using System.IO;
using Hocon;

namespace Reqtificator.Configuration
Expand Down Expand Up @@ -44,11 +44,11 @@ public void WriteToFile(string targetFile)
""{KeyVerboseLogging}"": {VerboseLogging.ToString().ToLowerInvariant()},
""{KeyMergeLeveledLists}"": {MergeLeveledLists.ToString().ToLowerInvariant()},
""{KeyMergeLeveledCharacters}"": {MergeLeveledCharacters.ToString().ToLowerInvariant()},
""{KeyMergeLeveledLists}"": {OpenEncounterZones.ToString().ToLowerInvariant()},
""{KeyOpenEncounterZones}"": {OpenEncounterZones.ToString().ToLowerInvariant()},
""{KeyActorVisualAutoMerge}"": {ActorVisualAutoMerge.ToString().ToLowerInvariant()},
""{KeyRaceVisualAutoMerge}"": {RaceVisualAutoMerge.ToString().ToLowerInvariant()}
}}";
File.WriteAllText(targetFile, configToWrite);
}
}
}
}

0 comments on commit 6fb8fd8

Please sign in to comment.