Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAdam committed Nov 28, 2020
1 parent ee0c5d9 commit 8cfa0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lumina/Excel/ExcelModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public ExcelSheet< T > GetSheet< T >( string name ) where T : class, IExcelRow

private ulong BuildTypeIdentifier( Type type )
{
return (ulong)type.Assembly.Location.GetHashCode() << 32 | (ulong)type.MetadataToken;
return (ulong)type.Assembly.Location.GetHashCode() << 32 | (uint)type.MetadataToken;
}

private ExcelSheet< T > GetSheet< T >( string name, Language language, uint? expectedHash ) where T : class, IExcelRow
Expand Down

0 comments on commit 8cfa0d7

Please sign in to comment.