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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue