Skip to content

Commit

Permalink
Merge pull request #73 from lmcintyre/fix_op
Browse files Browse the repository at this point in the history
Fix operator before I kill someone
  • Loading branch information
NotAdam authored Oct 20, 2023
2 parents febe6df + 68709fd commit 42806ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lumina/Excel/LazyRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static ILazyRow GetFirstLazyRowOrEmpty( GameData gameData, uint row, Lang

foreach( var range in _ranges[sheetName] )
{
if (row < range.Start.Value && row > range.End.Value)
if (row >= range.Start.Value && row < range.End.Value)
{
return new LazyRow< ExcelRow >( gameData, row, language );
}
Expand Down

0 comments on commit 42806ff

Please sign in to comment.