1
0
mirror of https://github.com/minetest/minetest.git synced 2024-11-15 23:10:28 +01:00

Don't handle PlayerPos packet coming from client if player is dead

This commit is contained in:
Loic Blot 2015-03-12 10:32:16 +01:00
parent 6ce0985f47
commit 3067d78216

View File

@ -555,6 +555,11 @@ void Server::handleCommand_PlayerPos(NetworkPacket* pkt)
return;
}
// If player is dead we don't care of this packet
if (player->hp == 0) {
return;
}
PlayerSAO *playersao = player->getPlayerSAO();
if (playersao == NULL) {
errorstream << "Server::ProcessData(): Cancelling: "