mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-17 21:37:43 +01:00
fix: uint->ulong for some object ids
This commit is contained in:
parent
873a845157
commit
d2f7589cb3
5 changed files with 5 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue