Changes properties to use automatic property initializers
This commit is contained in:
parent
f0a48ad431
commit
06fa31a7bf
623 changed files with 13072 additions and 19304 deletions
|
|
@ -10,15 +10,12 @@ namespace Server.Regions
|
|||
{
|
||||
private static object[] m_GuardParams = new object[1];
|
||||
private Type m_GuardType;
|
||||
private bool m_Disabled;
|
||||
|
||||
public bool Disabled{ get => m_Disabled;
|
||||
set => m_Disabled = value;
|
||||
}
|
||||
public bool Disabled { get; set; }
|
||||
|
||||
public virtual bool IsDisabled()
|
||||
{
|
||||
return m_Disabled;
|
||||
return Disabled;
|
||||
}
|
||||
|
||||
public static void Initialize()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue