forked from teamnwah/openmw-tes3coop
[Server] Rename isPlayerExists() into doesPlayerExist()
This commit is contained in:
parent
21d5bb4d4e
commit
826e64b40e
3 changed files with 3 additions and 3 deletions
|
@ -532,7 +532,7 @@ int Networking::mainLoop()
|
|||
bsIn.IgnoreBytes((unsigned int) RakNet::RakNetGUID::size()); // Ignore GUID from received packet
|
||||
|
||||
|
||||
if (Players::isPlayerExists(packet->guid))
|
||||
if (Players::doesPlayerExist(packet->guid))
|
||||
update(packet, bsIn);
|
||||
else
|
||||
preInit(packet, bsIn);
|
||||
|
|
|
@ -177,7 +177,7 @@ void Player::forEachLoaded(std::function<void(Player *pl, Player *other)> func)
|
|||
}
|
||||
}
|
||||
|
||||
bool Players::isPlayerExists(RakNet::RakNetGUID guid)
|
||||
bool Players::doesPlayerExist(RakNet::RakNetGUID guid)
|
||||
{
|
||||
return players.find(guid) != players.end();
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ public:
|
|||
static Player *getPlayer(unsigned short id);
|
||||
static TPlayers *getPlayers();
|
||||
static unsigned short getLastPlayerId();
|
||||
static bool isPlayerExists(RakNet::RakNetGUID guid);
|
||||
static bool doesPlayerExist(RakNet::RakNetGUID guid);
|
||||
|
||||
private:
|
||||
static TPlayers players;
|
||||
|
|
Loading…
Reference in a new issue