fix: Cleans up spell info variable (#848)
This commit is contained in:
parent
91493f7f27
commit
e5f55a424a
120 changed files with 241 additions and 247 deletions
|
|
@ -33,8 +33,7 @@ namespace Server
|
|||
{
|
||||
private readonly Mobile m_Mobile;
|
||||
|
||||
public InternalTimer(Mobile m)
|
||||
: base(TimeSpan.FromMinutes(1.0))
|
||||
public InternalTimer(Mobile m) : base(TimeSpan.FromMinutes(1.0))
|
||||
{
|
||||
m_Mobile = m;
|
||||
}
|
||||
|
|
@ -1128,8 +1127,7 @@ namespace Server.Spells
|
|||
private readonly Mobile m_Target;
|
||||
private int m_Damage;
|
||||
|
||||
public SpellDamageTimer(Spell s, Mobile target, Mobile from, int damage, TimeSpan delay)
|
||||
: base(delay)
|
||||
public SpellDamageTimer(Spell s, Mobile target, Mobile from, int damage, TimeSpan delay) : base(delay)
|
||||
{
|
||||
m_Target = target;
|
||||
m_From = from;
|
||||
|
|
@ -1170,8 +1168,7 @@ namespace Server.Spells
|
|||
public SpellDamageTimerAOS(
|
||||
Spell s, TimeSpan delay, Mobile target, Mobile from, int damage, int phys, int fire, int cold,
|
||||
int pois, int nrgy, int chaos, DFAlgorithm dfa
|
||||
)
|
||||
: base(delay)
|
||||
) : base(delay)
|
||||
{
|
||||
m_Target = target;
|
||||
m_From = from;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue