Upgrades code style - First batch (#22)
This commit is contained in:
parent
8ee42c8ea2
commit
632e8b4757
1834 changed files with 10245 additions and 10437 deletions
|
|
@ -37,7 +37,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class Patience : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( NeedsOfTheManyHeartwood1 ); } }
|
||||
public override Type NextQuest => typeof( NeedsOfTheManyHeartwood1 );
|
||||
|
||||
public Patience()
|
||||
{
|
||||
|
|
@ -74,7 +74,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class NeedsOfTheManyHeartwood1 : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( NeedsOfTheManyHeartwood2 ); } }
|
||||
public override Type NextQuest => typeof( NeedsOfTheManyHeartwood2 );
|
||||
public override bool IsChainTriggered => true;
|
||||
|
||||
public NeedsOfTheManyHeartwood1()
|
||||
|
|
@ -94,7 +94,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class NeedsOfTheManyHeartwood2 : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( MakingAContributionHeartwood ); } }
|
||||
public override Type NextQuest => typeof( MakingAContributionHeartwood );
|
||||
public override bool IsChainTriggered => true;
|
||||
|
||||
public NeedsOfTheManyHeartwood2()
|
||||
|
|
@ -114,7 +114,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class MakingAContributionHeartwood : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( UnnaturalCreations ); } }
|
||||
public override Type NextQuest => typeof( UnnaturalCreations );
|
||||
public override bool IsChainTriggered => true;
|
||||
|
||||
public MakingAContributionHeartwood()
|
||||
|
|
@ -168,7 +168,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class Discipline : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( NeedsOfTheManySanctuary ); } }
|
||||
public override Type NextQuest => typeof( NeedsOfTheManySanctuary );
|
||||
|
||||
public Discipline()
|
||||
{
|
||||
|
|
@ -195,7 +195,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class NeedsOfTheManySanctuary : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( MakingAContributionSanctuary ); } }
|
||||
public override Type NextQuest => typeof( MakingAContributionSanctuary );
|
||||
public override bool IsChainTriggered => true;
|
||||
|
||||
public NeedsOfTheManySanctuary()
|
||||
|
|
@ -215,7 +215,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class MakingAContributionSanctuary : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( SuppliesForSanctuary ); } }
|
||||
public override Type NextQuest => typeof( SuppliesForSanctuary );
|
||||
public override bool IsChainTriggered => true;
|
||||
|
||||
public MakingAContributionSanctuary()
|
||||
|
|
@ -235,7 +235,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class SuppliesForSanctuary : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( TheHumanBlight ); } }
|
||||
public override Type NextQuest => typeof( TheHumanBlight );
|
||||
public override bool IsChainTriggered => true;
|
||||
|
||||
public SuppliesForSanctuary()
|
||||
|
|
@ -288,7 +288,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class FriendOfTheFey : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( TokenOfFriendship ); } }
|
||||
public override Type NextQuest => typeof( TokenOfFriendship );
|
||||
|
||||
public FriendOfTheFey()
|
||||
{
|
||||
|
|
@ -316,7 +316,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class TokenOfFriendship : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( Alliance ); } }
|
||||
public override Type NextQuest => typeof( Alliance );
|
||||
public override bool IsChainTriggered => true;
|
||||
|
||||
public TokenOfFriendship()
|
||||
|
|
@ -367,7 +367,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
|
||||
public class FiendishFriends : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( CrackingTheWhipI ); } }
|
||||
public override Type NextQuest => typeof( CrackingTheWhipI );
|
||||
|
||||
public FiendishFriends()
|
||||
{
|
||||
|
|
@ -396,7 +396,7 @@ namespace Server.Engines.MLQuests.Definitions
|
|||
// TODO: Verify
|
||||
public class CrackingTheWhipI : MLQuest
|
||||
{
|
||||
public override Type NextQuest { get { return typeof( CrackingTheWhipII ); } }
|
||||
public override Type NextQuest => typeof( CrackingTheWhipII );
|
||||
public override bool IsChainTriggered => true;
|
||||
|
||||
public CrackingTheWhipI()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue