oops!
This commit is contained in:
parent
d72057c5d5
commit
3f839ed5bf
1 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue