1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-06 02:15:32 +00:00

[Server] Return -1 in GetObjectSummonerPid() when the player is invalid

This commit is contained in:
David Cernat 2018-07-05 02:05:10 +03:00
parent 76731f5def
commit 7010575075

View file

@ -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