1 Commits

Author SHA1 Message Date
KnackAtNite 4e4b2bd32d v0.0.3.13: Fix KeyNotFoundException when status ID not in sheet (return row not cache)
Debug Build and Test / Build against Latest Dalamud (push) Has been cancelled
Debug Build and Test / Build against Staging Dalamud (push) Has been cancelled
Release Build and Publish / Release Build against Staging Dalamud and deploy to MyDalamudPlugins (release) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-14 23:51:10 -05:00
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
<PropertyGroup>
<Authors>cultbaus</Authors>
<Company>-</Company>
<Version>0.0.3.12</Version>
<Version>0.0.3.13</Version>
<Description>This plugin manipulates flytext.</Description>
<Copyright>-</Copyright>
<PackageProjectUrl>https://github.com/cultbaus/CBT</PackageProjectUrl>
+3 -3
View File
@@ -85,7 +85,7 @@ public unsafe class SheetManager : S.IDisposable
this.actionCache[actionID] = row;
}
return this.actionCache[actionID];
return row;
}
private Status? GetStatusRow(int value1)
@@ -96,7 +96,7 @@ public unsafe class SheetManager : S.IDisposable
this.statusCache[value1] = row;
}
return this.statusCache[value1];
return row;
}
private Item? GetItemRow(int value1)
@@ -107,6 +107,6 @@ public unsafe class SheetManager : S.IDisposable
this.itemCache[value1] = row;
}
return this.itemCache[value1];
return row;
}
}