forked from mirror/openmw-tes3mp
[Server] Return -1 in GetObjectSummonerPid() when the player is invalid
This commit is contained in:
parent
76731f5def
commit
7010575075
1 changed files with 2 additions and 0 deletions
|
@ -134,6 +134,8 @@ unsigned int ObjectFunctions::GetObjectSummonerPid(unsigned int i) noexcept
|
|||
|
||||
if (player != nullptr)
|
||||
return player->getId();
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
const char *ObjectFunctions::GetObjectSummonerRefId(unsigned int i) noexcept
|
||||
|
|
Loading…
Reference in a new issue