Adds style cop (#109)

This commit is contained in:
Kamron Batman 2020-04-26 00:16:02 -07:00 committed by GitHub
parent 3e715bcb60
commit 556a17aba8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1725 changed files with 33831 additions and 38046 deletions

View file

@ -6,8 +6,6 @@ using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class VilePoison : MLQuest
{
public VilePoison()
@ -184,10 +182,6 @@ namespace Server.Engines.MLQuests.Definitions
public override bool IsChainTriggered => true;
}
#endregion
#region Mobiles
[QuesterName("Jamal (near Blighted Grove)")]
public class Jamal : BaseCreature
{
@ -264,8 +258,7 @@ namespace Server.Engines.MLQuests.Definitions
{
MLQuestSystem.Tell(this, pm, Utility.RandomList(
1074209, // Hey, could you help me out with something?
1074215 // Dont test my patience you sniveling worm!
));
1074215)); // Dont test my patience you sniveling worm!
}
public override void Serialize(IGenericWriter writer)
@ -282,6 +275,4 @@ namespace Server.Engines.MLQuests.Definitions
reader.ReadInt();
}
}
#endregion
}