This commit is contained in:
parent
1db4682222
commit
f77cd9b202
2 changed files with 6 additions and 12 deletions
|
|
@ -54,17 +54,13 @@ namespace Server.Items
|
|||
|
||||
[CommandProperty( AccessLevel.GameMaster )]
|
||||
public override bool Locked {
|
||||
get { return m_Locked; }
|
||||
get { return base.Locked; }
|
||||
set {
|
||||
if ( m_Locked != value ) {
|
||||
m_Locked = value;
|
||||
if ( base.Locked != value ) {
|
||||
base.Locked = value;
|
||||
|
||||
if ( !m_Locked )
|
||||
if ( !value )
|
||||
StartResetTimer();
|
||||
else
|
||||
m_Picker = null;
|
||||
|
||||
InvalidateProperties();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ namespace Server.Spells.Third
|
|||
if ( m_Owner.CheckSequence() ) {
|
||||
SpellHelper.Turn( from, o );
|
||||
|
||||
Effects.SendLocationParticles( EffectItem.Create( loc, from.Map, EffectItem.DefaultDuration ), 0x376A, 9, 32, 5024 );
|
||||
Effects.SendLocationParticles( EffectItem.Create( (Point3D)loc, from.Map, EffectItem.DefaultDuration ), 0x376A, 9, 32, 5024 );
|
||||
|
||||
Effects.PlaySound( loc, from.Map, 0x1FF );
|
||||
|
||||
|
|
@ -72,9 +72,7 @@ namespace Server.Spells.Third
|
|||
}
|
||||
else
|
||||
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 503099 ); // My spell does not seem to have an effect on that lock.
|
||||
}
|
||||
else
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue