Removes default value initializers
This commit is contained in:
parent
ff26dfa375
commit
f0a48ad431
19 changed files with 37 additions and 37 deletions
|
|
@ -356,7 +356,7 @@ namespace Server.Engines.ConPVP
|
|||
}
|
||||
|
||||
private Point3DList m_Path = new Point3DList();
|
||||
private int m_PathIdx = 0;
|
||||
private int m_PathIdx;
|
||||
|
||||
private void BeginFlight( Point3D dest )
|
||||
{
|
||||
|
|
@ -785,7 +785,7 @@ namespace Server.Engines.ConPVP
|
|||
|
||||
public class BRGoal : BaseAddon
|
||||
{
|
||||
private bool m_North = false;
|
||||
private bool m_North;
|
||||
|
||||
[CommandProperty( AccessLevel.GameMaster )]
|
||||
public bool North { get => m_North;
|
||||
|
|
@ -1531,7 +1531,7 @@ namespace Server.Engines.ConPVP
|
|||
|
||||
private BRBomb m_Bomb;
|
||||
|
||||
private TimerCallback m_UnhideCallback = null;
|
||||
private TimerCallback m_UnhideCallback;
|
||||
|
||||
public void ReturnBomb()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -927,9 +927,9 @@ namespace Server.Engines.ConPVP
|
|||
}
|
||||
|
||||
private bool m_Capturable = true;
|
||||
private Timer m_CaptureTimer = null;
|
||||
private Timer m_UncaptureTimer = null;
|
||||
private int m_CapStage = 0;
|
||||
private Timer m_CaptureTimer;
|
||||
private Timer m_UncaptureTimer;
|
||||
private int m_CapStage;
|
||||
|
||||
public void Dominate( DDWayPoint point, Mobile from, DDTeamInfo team )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue