diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 0b3a56a..9735076 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -57,6 +57,11 @@ 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; + if (player->HasAuraType(SPELL_AURA_FEATHER_FALL) || player->HasAuraType(SPELL_AURA_SAFE_FALL) || player->HasAuraType(SPELL_AURA_WATER_WALK))