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

@ -6,9 +6,9 @@ namespace Server.Items
{
private Timer m_Timer;
private DateTime m_End;
private bool m_BurntOut = false;
private bool m_Burning = false;
private bool m_Protected = false;
private bool m_BurntOut;
private bool m_Burning;
private bool m_Protected;
private TimeSpan m_Duration = TimeSpan.Zero;
public abstract int LitItemID{ get; }