Changes properties to use automatic property initializers

This commit is contained in:
Kamron Batman 2018-09-14 15:23:29 -07:00
parent f0a48ad431
commit 06fa31a7bf
623 changed files with 13072 additions and 19304 deletions

View file

@ -22,11 +22,7 @@ namespace Server
{
public abstract class PartyCommands
{
private static PartyCommands m_Handler;
public static PartyCommands Handler{ get => m_Handler;
set => m_Handler = value;
}
public static PartyCommands Handler { get; set; }
public abstract void OnAdd( Mobile from );
public abstract void OnRemove( Mobile from, Mobile target );