From 3f839ed5bf0a5cd17e2b5f401a3cc494d02dd893 Mon Sep 17 00:00:00 2001 From: mark Date: Wed, 8 Aug 2007 00:44:04 +0000 Subject: [PATCH] oops! --- Scripts/Items/Skill Items/Tailor Items/Misc/Scissors.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Scripts/Items/Skill Items/Tailor Items/Misc/Scissors.cs b/Scripts/Items/Skill Items/Tailor Items/Misc/Scissors.cs index e483fa594..1b1ceb7e6 100644 --- a/Scripts/Items/Skill Items/Tailor Items/Misc/Scissors.cs +++ b/Scripts/Items/Skill Items/Tailor Items/Misc/Scissors.cs @@ -55,7 +55,7 @@ namespace Server.Items protected override void OnTarget( Mobile from, object targeted ) { - if ( m_Item.Deleted || !m_Item.Movable ) + if ( m_Item.Deleted ) return; /*if ( targeted is Item && !((Item)targeted).IsStandardLoot() ) @@ -71,6 +71,9 @@ namespace Server.Items { from.SendLocalizedMessage( 1063305 ); // Didn't your parents ever tell you not to run with scissors in your hand?! } + else if ( targeted is Item && !((Item)targeted).Movable ) { + return; + } else if( targeted is IScissorable ) { IScissorable obj = (IScissorable)targeted;