From 972d48173db4c5e87cdacbce513dabb0ada68375 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Mon, 30 May 2022 14:35:55 -0400 Subject: [PATCH] Scripts/Spells: Remove unnecessary SetAnimationTier Port From (https://github.com/TrinityCore/TrinityCore/commit/37f425b1b30b757b64bc80a066c6ae352d433583) --- Source/Scripts/Spells/Generic.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/Scripts/Spells/Generic.cs b/Source/Scripts/Spells/Generic.cs index 0b5762f3b..cdbbcea3f 100644 --- a/Source/Scripts/Spells/Generic.cs +++ b/Source/Scripts/Spells/Generic.cs @@ -1909,15 +1909,9 @@ namespace Scripts.Spells.Generic return; if (owner.IsMounted()) - { - target.SetAnimTier(AnimTier.Fly); target.SetDisableGravity(true); - } else - { - target.SetAnimTier(AnimTier.Ground); target.SetDisableGravity(false); - } } public override void Register()