mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 07:32:00 -04:00
[Server] Return -1 in GetObjectSummonerPid() when the player is invalid
This commit is contained in:
parent
76731f5def
commit
7010575075
@ -134,6 +134,8 @@ unsigned int ObjectFunctions::GetObjectSummonerPid(unsigned int i) noexcept
|
|||||||
|
|
||||||
if (player != nullptr)
|
if (player != nullptr)
|
||||||
return player->getId();
|
return player->getId();
|
||||||
|
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *ObjectFunctions::GetObjectSummonerRefId(unsigned int i) noexcept
|
const char *ObjectFunctions::GetObjectSummonerRefId(unsigned int i) noexcept
|
||||||
|
Loading…
x
Reference in New Issue
Block a user