Kill players that fall out of the map

This commit is contained in:
dongresource 2020-12-31 02:22:07 +01:00
parent a12acbb68f
commit bad8ef1d10

View File

@ -974,6 +974,10 @@ void MobManager::playerTick(CNServer *serv, time_t currTime) {
} }
} }
// check if the player has fallen out of the world
if (plr->z < -30000)
dealGooDamage(sock, PC_MAXHEALTH(36) * 2);
if (transmit) { if (transmit) {
INITSTRUCT(sP_FE2CL_REP_PC_TICK, pkt); INITSTRUCT(sP_FE2CL_REP_PC_TICK, pkt);