Upgrades code style - First batch (#22)

This commit is contained in:
Kamron Batman 2018-08-14 06:16:50 +08:00 • committed by GitHub
parent 8ee42c8ea2
commit 632e8b4757
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1834 changed files with 10245 additions and 10437 deletions

View file

@ -23,7 +23,7 @@ namespace Server.Engines.Quests.Necro
new QuestItemInfo( 1023643, 8787 ) // spellbook
};
public override QuestItemInfo[] Info{ get{ return m_Info; } }
public override QuestItemInfo[] Info => m_Info;
public AnimateMaabusCorpseObjective()
{
@ -188,7 +188,7 @@ namespace Server.Engines.Quests.Necro
new QuestItemInfo( 1023676, 3679 ) // glowing rune
};
public override QuestItemInfo[] Info{ get{ return m_Info; } }
public override QuestItemInfo[] Info => m_Info;
public FindVaultOfSecretsObjective()
{
@ -307,7 +307,7 @@ namespace Server.Engines.Quests.Necro
new QuestItemInfo( 1026153, 6178 ) // teleporter
};
public override QuestItemInfo[] Info{ get{ return m_Info; } }
public override QuestItemInfo[] Info => m_Info;
public ReturnToCrystalCaveObjective()
{
@ -639,4 +639,4 @@ namespace Server.Engines.Quests.Necro
System.AddConversation( new BankerConversation() );
}
}
}
}