diff --git a/src/LuminaSupplemental.Excel/LuminaSupplemental.Excel.csproj b/src/LuminaSupplemental.Excel/LuminaSupplemental.Excel.csproj
index 97d7655..c1df604 100644
--- a/src/LuminaSupplemental.Excel/LuminaSupplemental.Excel.csproj
+++ b/src/LuminaSupplemental.Excel/LuminaSupplemental.Excel.csproj
@@ -6,8 +6,8 @@
https://github.com/Critical-Impact/LuminaSupplemental
LICENSE
https://github.com/Critical-Impact/LuminaSupplemental
- 2.2.1
- 2.2.1
+ 2.2.2
+ 2.2.2
Supplemental data for lumina and dalamud plugins.
diff --git a/src/LuminaSupplemental.Excel/Model/ItemSupplement.cs b/src/LuminaSupplemental.Excel/Model/ItemSupplement.cs
index e58d032..464bcbb 100644
--- a/src/LuminaSupplemental.Excel/Model/ItemSupplement.cs
+++ b/src/LuminaSupplemental.Excel/Model/ItemSupplement.cs
@@ -38,9 +38,9 @@ public ItemSupplement()
public void FromCsv(string[] lineData)
{
- ItemId = uint.Parse( lineData[ 1 ] );
- SourceItemId = uint.Parse( lineData[ 2 ] );
- if( Enum.TryParse( lineData[ 3 ], out var itemSupplementSource ) )
+ ItemId = uint.Parse( lineData[ 0 ] );
+ SourceItemId = uint.Parse( lineData[ 1 ] );
+ if( Enum.TryParse( lineData[ 2 ], out var itemSupplementSource ) )
{
ItemSupplementSource = itemSupplementSource;
}