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

@ -393,7 +393,7 @@ namespace Server.Engines.MLQuests.Definitions
public class MougGuurMustDie : MLQuest
{
public override Type NextQuest { get { return typeof( LeaderOfThePack ); } }
public override Type NextQuest => typeof( LeaderOfThePack );
public MougGuurMustDie()
{
@ -412,7 +412,7 @@ namespace Server.Engines.MLQuests.Definitions
public class LeaderOfThePack : MLQuest
{
public override Type NextQuest { get { return typeof( SayonaraSzavetra ); } }
public override Type NextQuest => typeof( SayonaraSzavetra );
public override bool IsChainTriggered => true;
public LeaderOfThePack()
@ -522,7 +522,7 @@ namespace Server.Engines.MLQuests.Definitions
public class Marauders : MLQuest
{
public override Type NextQuest { get { return typeof( TheBrainsOfTheOperation ); } }
public override Type NextQuest => typeof( TheBrainsOfTheOperation );
public Marauders()
{
@ -540,7 +540,7 @@ namespace Server.Engines.MLQuests.Definitions
public class TheBrainsOfTheOperation : MLQuest
{
public override Type NextQuest { get { return typeof( TheBrawn ); } }
public override Type NextQuest => typeof( TheBrawn );
public override bool IsChainTriggered => true;
public TheBrainsOfTheOperation()
@ -559,7 +559,7 @@ namespace Server.Engines.MLQuests.Definitions
public class TheBrawn : MLQuest
{
public override Type NextQuest { get { return typeof( TheBiggerTheyAre ); } }
public override Type NextQuest => typeof( TheBiggerTheyAre );
public override bool IsChainTriggered => true;
public TheBrawn()