From 5b6f1d38be6e120f6434acb70767febb6e0e65a3 Mon Sep 17 00:00:00 2001 From: KayenEQ Date: Mon, 7 Mar 2022 16:41:43 -0500 Subject: [PATCH] [Bug Fix] Invisible will display as dropped now on air pets when they attack. (#2042) invisible display issue on pets --- zone/spell_effects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/spell_effects.cpp b/zone/spell_effects.cpp index 21d0c92a7..583843636 100644 --- a/zone/spell_effects.cpp +++ b/zone/spell_effects.cpp @@ -9548,7 +9548,7 @@ void Mob::CalcSpellPowerDistanceMod(uint16 spell_id, float range, Mob* caster) void Mob::BreakInvisibleSpells() { if(invisible) { - ZeroInvisibleVars(InvisType::T_INVISIBLE); + nobuff_invisible = 0; BuffFadeByEffect(SE_Invisibility); BuffFadeByEffect(SE_Invisibility2); }