forked from Mirrorlandia_minetest/minetest
Fix player not dying when beated to death by other player
This commit is contained in:
parent
bff8be8b76
commit
bc5cc638fc
@ -4307,13 +4307,12 @@ void Server::HandlePlayerHP(Player *player, s16 damage)
|
||||
if(srp->m_respawn_active)
|
||||
return;
|
||||
|
||||
if(damage == 0)
|
||||
return;
|
||||
|
||||
if(player->hp > damage)
|
||||
{
|
||||
player->hp -= damage;
|
||||
SendPlayerHP(player);
|
||||
if(damage != 0){
|
||||
player->hp -= damage;
|
||||
SendPlayerHP(player);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user