Skip to content

Commit bbe0860

Browse files
committed
fixed #9
1 parent fe7ac85 commit bbe0860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PandoraPlus/Patch/Patchers/Skyrim/Hkx/PackFileValidator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ private void ValidateElementText(XElement element, Dictionary<string, int> event
127127
var varMatch = VarFormat.Matches(element.Value);
128128
foreach (Match match in varMatch)
129129
{
130-
var index = GetIndexFromMatch(eventIndices, match);
130+
var index = GetIndexFromMatch(variableIndices, match);
131131
rawValue = rawValue.Replace(match.Value, index.ToString());
132132
}
133133
element.SetValue(rawValue);

0 commit comments

Comments
 (0)