Adds style cop (#109)
This commit is contained in:
parent
3e715bcb60
commit
556a17aba8
1725 changed files with 33831 additions and 38046 deletions
|
|
@ -6,7 +6,7 @@ using Server.Targeting;
|
|||
|
||||
namespace Server.SkillHandlers
|
||||
{
|
||||
public class Begging
|
||||
public static class Begging
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
|
|
@ -62,8 +62,7 @@ namespace Server.SkillHandlers
|
|||
else
|
||||
number = 500402; // You are too far away to beg from her.
|
||||
}
|
||||
else if (!Core.ML && from.Mounted
|
||||
) // If we're on a mount, who would give us money? TODO: guessed it's removed since ML
|
||||
else if (!Core.ML && from.Mounted) // If we're on a mount, who would give us money? TODO: guessed it's removed since ML
|
||||
{
|
||||
number = 500404; // They seem unwilling to give you any money.
|
||||
}
|
||||
|
|
@ -91,7 +90,8 @@ namespace Server.SkillHandlers
|
|||
|
||||
private class InternalTimer : Timer
|
||||
{
|
||||
private Mobile m_From, m_Target;
|
||||
private readonly Mobile m_From;
|
||||
private readonly Mobile m_Target;
|
||||
|
||||
public InternalTimer(Mobile from, Mobile target) : base(TimeSpan.FromSeconds(2.0))
|
||||
{
|
||||
|
|
@ -174,4 +174,4 @@ namespace Server.SkillHandlers
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue