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

@ -43,25 +43,13 @@ namespace Server.Engines.Help
private PageInfo m_PageInfo;
public PageInfo PageInfo
{
get{ return m_PageInfo; }
}
public PageInfo PageInfo => m_PageInfo;
public Mobile Sender
{
get
{
return m_Sender;
}
}
public Mobile Sender => m_Sender;
public Mobile Handler
{
get
{
return m_Handler;
}
get => m_Handler;
set
{
PageQueue.OnHandlerChanged( m_Handler, value, this );
@ -69,53 +57,17 @@ namespace Server.Engines.Help
}
}
public DateTime Sent
{
get
{
return m_Sent;
}
}
public DateTime Sent => m_Sent;
public string Message
{
get
{
return m_Message;
}
}
public string Message => m_Message;
public PageType Type
{
get
{
return m_Type;
}
}
public PageType Type => m_Type;
public Point3D PageLocation
{
get
{
return m_PageLocation;
}
}
public Point3D PageLocation => m_PageLocation;
public Map PageMap
{
get
{
return m_PageMap;
}
}
public Map PageMap => m_PageMap;
public List<SpeechLogEntry> SpeechLog
{
get
{
return m_SpeechLog;
}
}
public List<SpeechLogEntry> SpeechLog => m_SpeechLog;
private Timer m_Timer;
@ -311,13 +263,7 @@ namespace Server.Engines.Help
Remove( GetEntry( sender ) );
}
public static ArrayList List
{
get
{
return m_List;
}
}
public static ArrayList List => m_List;
public static void Enqueue( PageEntry entry )
{