Skip to content

Commit

Permalink
Fixed EasyNPC Parser
Browse files Browse the repository at this point in the history
  • Loading branch information
Piranha91 committed May 1, 2024
1 parent 7ae94fd commit 4dda58d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SynthEBD/Patcher/PatcherAux/EasyNPCProfileParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public void Reinitialize(string filepath)
{
continue;
}
entry.TrimEnd('|');
var split1 = entry.Split('|');
var trimmed = entry.TrimEnd('|');
var split1 = trimmed.Split('|');
if (split1.Length != 2) { continue; }
var appearanceMod = ModKey.FromNameAndExtension(split1[1]);

Expand Down

0 comments on commit 4dda58d

Please sign in to comment.