From 3499444660b81e9975b6908c6e17d439a70f45c0 Mon Sep 17 00:00:00 2001 From: eos Date: Mon, 4 Feb 2013 00:30:45 +0000 Subject: [PATCH] Reverting redundant check --- Scripts/Items/Weapons/BaseWeapon.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Scripts/Items/Weapons/BaseWeapon.cs b/Scripts/Items/Weapons/BaseWeapon.cs index d1c32672e..2404e9fc3 100644 --- a/Scripts/Items/Weapons/BaseWeapon.cs +++ b/Scripts/Items/Weapons/BaseWeapon.cs @@ -2386,10 +2386,7 @@ namespace Server.Items if ( from.Mounted ) return; - if( !from.Mounted ) - { - from.Animate( action, frames, 1, true, false, 0 ); - } + from.Animate( action, frames, 1, true, false, 0 ); } public virtual void PlaySwingAnimation( Mobile from )