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

@ -29,20 +29,11 @@ namespace Server.Engines.MLQuests
public static readonly List<MLQuest> EmptyList = new List<MLQuest>();
public static Dictionary<Type, MLQuest> Quests
{
get { return m_Quests; }
}
public static Dictionary<Type, MLQuest> Quests => m_Quests;
public static Dictionary<Type, List<MLQuest>> QuestGivers
{
get { return m_QuestGivers; }
}
public static Dictionary<Type, List<MLQuest>> QuestGivers => m_QuestGivers;
public static Dictionary<PlayerMobile, MLQuestContext> Contexts
{
get { return m_Contexts; }
}
public static Dictionary<PlayerMobile, MLQuestContext> Contexts => m_Contexts;
static MLQuestSystem()
{