diff --git a/src/ClassicUO.Client/Dust765/External/OnCastingGump.cs b/src/ClassicUO.Client/Dust765/External/OnCastingGump.cs index 182780eae..b45eed350 100644 --- a/src/ClassicUO.Client/Dust765/External/OnCastingGump.cs +++ b/src/ClassicUO.Client/Dust765/External/OnCastingGump.cs @@ -65,7 +65,7 @@ public void Start(uint _spell_id, uint _re = 0) SpellAction spell = (SpellAction)_spell_id; circle = (uint)SpellManager.GetCircle(spell); uint protection_delay = 0; - if (World.Player.IsBuffIconExists(BuffIconType.Protection)) + if (World.Player.IsBuffIconExists(BuffIconType.Protection) || World.Player.IsBuffIconExists(BuffIconType.ArchProtection)) { protection_delay = protection_delay + 4; } @@ -74,7 +74,7 @@ public void Start(uint _spell_id, uint _re = 0) } catch { - // cant discover the spell + Stop(); }