blank line removal

This commit is contained in:
acidmanifesto
2022-02-08 14:28:28 -05:00
parent bbe68cea13
commit 42efe99e3d

View File

@@ -57,10 +57,10 @@ void AnticheatMgr::WalkOnWaterHackDetection(Player* player, MovementInfo moveme
if (!player->IsAlive())
return;
// Prevents the False Positive for water walking when you ressurrect.
// Aura 15007 (Resurrectino sickness) is given while dead before returning back to life.
if (!player->IsAlive() && player->HasAura(15007))
return;
// Prevents the False Positive for water walking when you ressurrect.
// Aura 15007 (Resurrectino sickness) is given while dead before returning back to life.
if (!player->IsAlive() && player->HasAura(15007))
return;
if (player->HasAuraType(SPELL_AURA_FEATHER_FALL) ||
player->HasAuraType(SPELL_AURA_SAFE_FALL) ||
@@ -286,7 +286,6 @@ void AnticheatMgr::SpeedHackDetection(Player* player, MovementInfo movementInfo)
}
}
void AnticheatMgr::HandlePlayerLogin(Player* player)
{
// we must delete this to prevent errors in case of crash