Skip to content

Commit

Permalink
fuck
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAdam committed Oct 10, 2023
1 parent 1b61d35 commit af13b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lumina/Excel/ExcelSheetImpl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ internal void GenerateFilePages()
{
// var data = DataPages.FirstOrDefault( s => s.RowData.ContainsKey( row ) );

var page = DataPages.FirstOrDefault( s => row >= s.StartId && row <= s.StartId + s.RowCount );
var page = DataPages.FirstOrDefault( s => row >= s.StartId && row < s.StartId + s.RowCount );

// if( data == null )
// {
Expand Down

0 comments on commit af13b9b

Please sign in to comment.