Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -35,13 +35,17 @@ namespace Server.Regions
|
|||
private SpawnZLevel m_SpawnZLevel;
|
||||
private bool m_ExcludeFromParentSpawns;
|
||||
|
||||
public string RuneName{ get{ return m_RuneName; } set{ m_RuneName = value; } }
|
||||
public string RuneName{ get => m_RuneName;
|
||||
set => m_RuneName = value;
|
||||
}
|
||||
|
||||
public bool NoLogoutDelay{ get{ return m_NoLogoutDelay; } set{ m_NoLogoutDelay = value; } }
|
||||
public bool NoLogoutDelay{ get => m_NoLogoutDelay;
|
||||
set => m_NoLogoutDelay = value;
|
||||
}
|
||||
|
||||
public SpawnEntry[] Spawns
|
||||
{
|
||||
get{ return m_Spawns; }
|
||||
get => m_Spawns;
|
||||
set
|
||||
{
|
||||
if ( m_Spawns != null )
|
||||
|
|
@ -54,9 +58,13 @@ namespace Server.Regions
|
|||
}
|
||||
}
|
||||
|
||||
public SpawnZLevel SpawnZLevel{ get{ return m_SpawnZLevel; } set{ m_SpawnZLevel = value; } }
|
||||
public SpawnZLevel SpawnZLevel{ get => m_SpawnZLevel;
|
||||
set => m_SpawnZLevel = value;
|
||||
}
|
||||
|
||||
public bool ExcludeFromParentSpawns{ get{ return m_ExcludeFromParentSpawns; } set{ m_ExcludeFromParentSpawns = value; } }
|
||||
public bool ExcludeFromParentSpawns{ get => m_ExcludeFromParentSpawns;
|
||||
set => m_ExcludeFromParentSpawns = value;
|
||||
}
|
||||
|
||||
public override void OnUnregister()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue