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

@ -66,7 +66,7 @@ namespace Server.Engines.Help
private Queue<SpeechLogEntry> m_Queue;
public int Count{ get{ return m_Queue.Count; } }
public int Count => m_Queue.Count;
public SpeechLog()
{
@ -131,9 +131,9 @@ namespace Server.Engines.Help
private string m_Speech;
private DateTime m_Created;
public Mobile From{ get{ return m_From; } }
public string Speech{ get{ return m_Speech; } }
public DateTime Created{ get{ return m_Created; } }
public Mobile From => m_From;
public string Speech => m_Speech;
public DateTime Created => m_Created;
public SpeechLogEntry( Mobile from, string speech )
{