Fixes body expression style.

This commit is contained in:
Kamron Batman 2018-09-14 08:46:14 -07:00
parent 3f0a72a62f
commit 33f5e77a24
957 changed files with 7424 additions and 15973 deletions

View file

@ -31,62 +31,32 @@ namespace Server.Misc
public static ClientVersion Required
{
get
{
return m_Required;
}
set
{
m_Required = value;
}
get => m_Required;
set => m_Required = value;
}
public static bool AllowRegular
{
get
{
return m_AllowRegular;
}
set
{
m_AllowRegular = value;
}
get => m_AllowRegular;
set => m_AllowRegular = value;
}
public static bool AllowUOTD
{
get
{
return m_AllowUOTD;
}
set
{
m_AllowUOTD = value;
}
get => m_AllowUOTD;
set => m_AllowUOTD = value;
}
public static bool AllowGod
{
get
{
return m_AllowGod;
}
set
{
m_AllowGod = value;
}
get => m_AllowGod;
set => m_AllowGod = value;
}
public static TimeSpan KickDelay
{
get
{
return m_KickDelay;
}
set
{
m_KickDelay = value;
}
get => m_KickDelay;
set => m_KickDelay = value;
}
public static void Initialize()