Removes default value initializers

This commit is contained in:
Kamron Batman 2018-09-14 15:13:14 -07:00
parent ff26dfa375
commit f0a48ad431
19 changed files with 37 additions and 37 deletions

View file

@ -202,17 +202,17 @@ namespace Server.Mobiles
private double m_MinTameSkill;
private bool m_bTamable;
private bool m_bSummoned = false;
private bool m_bSummoned;
private DateTime m_SummonEnd;
private int m_iControlSlots = 1;
private bool m_bBardProvoked = false;
private bool m_bBardPacified = false;
private Mobile m_bBardMaster = null;
private Mobile m_bBardTarget = null;
private bool m_bBardProvoked;
private bool m_bBardPacified;
private Mobile m_bBardMaster;
private Mobile m_bBardTarget;
private DateTime m_timeBardEnd;
private WayPoint m_CurrentWayPoint = null;
private IPoint2D m_TargetLocation = null;
private WayPoint m_CurrentWayPoint;
private IPoint2D m_TargetLocation;
private Mobile m_SummonMaster;
@ -4889,7 +4889,7 @@ namespace Server.Mobiles
private long m_NextHealTime = Core.TickCount;
private long m_NextHealOwnerTime = Core.TickCount;
private Timer m_HealTimer = null;
private Timer m_HealTimer;
public bool IsHealing => ( m_HealTimer != null );

View file

@ -9,7 +9,7 @@ namespace Server.Mobiles
public override string CorpseName => "a plague beast corpse";
private int m_DevourTotal;
private int m_DevourGoal;
private bool m_HasMetalChest = false;
private bool m_HasMetalChest;
[CommandProperty( AccessLevel.GameMaster )]
public int TotalDevoured

View file

@ -47,7 +47,7 @@ namespace Server.Mobiles
private class InternalTimer : Timer
{
private Wanderer m_Owner;
private int m_Count = 0;
private int m_Count;
public InternalTimer( Wanderer owner ) : base( TimeSpan.FromSeconds( 0.1 ), TimeSpan.FromSeconds( 0.1 ) )
{

View file

@ -94,7 +94,7 @@ namespace Server.Mobiles
private DateTime m_DeleteTime;
private Timer m_DeleteTimer;
private bool m_DeleteCorpse = false;
private bool m_DeleteCorpse;
public bool IsBeingDeleted => ( m_DeleteTimer != null );