This commit is contained in:
Not Officer 2021-11-03 22:24:26 +01:00
parent d244717ce6
commit 9bb0d1d40b
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 781093c97911966884e389b6899b81cc6b50e1b9
Subproject commit 5bf07f46d0a5c57eaeeb06d4afe749e11295eb69

View File

@ -145,7 +145,7 @@ namespace FModel.Creator.Bases.FN
curveTable.TryGetCurveTableRow(rowName.Text, StringComparison.OrdinalIgnoreCase, out var rowValue) &&
rowValue.TryGetValue(out FSimpleCurveKey[] keys, "Keys") && keys.Length > 0)
{
statValue = keys[0].KeyValue;
statValue = keys[0].Value;
return true;
}
@ -278,4 +278,4 @@ namespace FModel.Creator.Bases.FN
c.DrawRect(new SKRect(height * 2, y, Math.Min(height * 2 + sliderWidth, sliderRight), y + 5), _statPaint);
}
}
}
}