From 7f17250eafb7d088b6bdb82bb2a3057016d5f28f Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 20 Jan 2023 22:03:58 +0100 Subject: [PATCH] fix(data): correctly parse special cost --- Data/NosSmooth.Data.NOSFiles/Parsers/SkillParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/NosSmooth.Data.NOSFiles/Parsers/SkillParser.cs b/Data/NosSmooth.Data.NOSFiles/Parsers/SkillParser.cs index 76de4ee..2d92620 100644 --- a/Data/NosSmooth.Data.NOSFiles/Parsers/SkillParser.cs +++ b/Data/NosSmooth.Data.NOSFiles/Parsers/SkillParser.cs @@ -58,7 +58,7 @@ public class SkillParser : IInfoParser (TargetType)targetEntry.Read(1), (HitType)targetEntry.Read(2), (Element)typeEntry.Read(6), - costEntry.Read(1), + costEntry.Read(3), dataEntry.Read(1), dataEntry.Read(2), dataEntry.Read(10), -- 2.49.0