Skip to content

Commit

Permalink
Fixed switched switch in env log from prev commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Piranha91 committed Aug 1, 2024
1 parent 03c9a6a commit 541b404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SynthEBD/PatcherState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ public string GetStateLogStr()
string fixedScriptVer = string.Empty;
switch(TexMeshSettings.bFixedScriptsOldSKSEversion)
{
case true: fixedScriptVer = "1.5.9.7 or Higher"; break;
case false: fixedScriptVer = "<1.5.9.7"; break;
case false: fixedScriptVer = "1.5.9.7 or Higher"; break;
case true: fixedScriptVer = "<1.5.9.7"; break;
}
sb.AppendLine("Using Fixed Global Script For " + fixedScriptVer);
}
Expand Down

0 comments on commit 541b404

Please sign in to comment.