Skip to content

Commit bd59d53

Browse files
committed
Adding the VortexKey ModLoadSetting
This will stop the script merger from complaining about VK being and unrecognized value
1 parent 38e5dcb commit bd59d53

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

WitcherScriptMerger/LoadOrder/CustomLoadOrder.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ bool ProcessLine(string line, int lineNum, ref ModLoadSetting setting)
8686
if (!ProcessPriorityLine(line, lineNum, setting))
8787
return false;
8888
}
89+
else if (line.StartsWith("VK="))
90+
{
91+
// Ignore
92+
}
8993
else if (!string.IsNullOrWhiteSpace(line) && !line.StartsWith(";"))
9094
{
9195
ShowWarningForMalformedFile($"Unrecognized value on line {lineNum}:\n\n{line}");

WitcherScriptMerger/LoadOrder/ModLoadSetting.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ class ModLoadSetting
44
{
55
public string ModName { get; set; }
66

7+
public string VK { get; set; }
8+
79
public bool? IsEnabled { get; set; }
810

911
public int? Priority { get; set; }

0 commit comments

Comments
 (0)