fix: uint->ulong for some object ids

This commit is contained in:
NotNite 2023-01-10 20:04:31 -05:00
parent 873a845157
commit d2f7589cb3
No known key found for this signature in database
GPG key ID: BD91A5402CCEB08A
5 changed files with 5 additions and 5 deletions

View file

@ -60,7 +60,7 @@ public sealed partial class ObjectTable : IServiceType
/// </summary>
/// <param name="objectId">Object ID to find.</param>
/// <returns>A game object or null.</returns>
public GameObject? SearchById(uint objectId)
public GameObject? SearchById(ulong objectId)
{
if (objectId is GameObject.InvalidGameObjectId or 0)
return null;