Skip to content

Commit

Permalink
Add Console output to show settings while patching
Browse files Browse the repository at this point in the history
  • Loading branch information
tr4wzified committed Oct 18, 2020
1 parent 5922329 commit 1cccef8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions KnowYourArmorPatcher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,11 @@ public static void RunPatch(SynthesisState<ISkyrimMod, ISkyrimModGetter> state)
float effectIntensity = (float)settingsJson["effect_intensity"]!;
bool patchArmorDescriptions = (bool)settingsJson["patch_armor_descriptions"]!;

Console.WriteLine("*** DETECTED SETTINGS ***");
Console.WriteLine("patch_armor_descriptions: " + patchArmorDescriptions);
Console.WriteLine("effect_intensity: " + effectIntensity);
Console.WriteLine("*************************");

Dictionary<string, FormKey> armorKeywords = armorKeywordsTuple
.Select(t =>
{
Expand Down

0 comments on commit 1cccef8

Please sign in to comment.