Skip to content

Commit

Permalink
2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Critical-Impact committed Feb 11, 2025
1 parent 6586b1c commit 0d62cc3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/LuminaSupplemental.Excel/LuminaSupplemental.Excel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<PackageProjectUrl>https://github.com/Critical-Impact/LuminaSupplemental</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/Critical-Impact/LuminaSupplemental</RepositoryUrl>
<PackageVersion>2.2.1</PackageVersion>
<FileVersion>2.2.1</FileVersion>
<PackageVersion>2.2.2</PackageVersion>
<FileVersion>2.2.2</FileVersion>
<Description>Supplemental data for lumina and dalamud plugins.</Description>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions src/LuminaSupplemental.Excel/Model/ItemSupplement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ public ItemSupplement()

public void FromCsv(string[] lineData)
{
ItemId = uint.Parse( lineData[ 1 ] );
SourceItemId = uint.Parse( lineData[ 2 ] );
if( Enum.TryParse<ItemSupplementSource>( lineData[ 3 ], out var itemSupplementSource ) )
ItemId = uint.Parse( lineData[ 0 ] );
SourceItemId = uint.Parse( lineData[ 1 ] );
if( Enum.TryParse<ItemSupplementSource>( lineData[ 2 ], out var itemSupplementSource ) )
{
ItemSupplementSource = itemSupplementSource;
}
Expand Down

0 comments on commit 0d62cc3

Please sign in to comment.