Removes default value initializers
This commit is contained in:
parent
ff26dfa375
commit
f0a48ad431
19 changed files with 37 additions and 37 deletions
|
|
@ -159,7 +159,7 @@ namespace Server.Items
|
|||
|
||||
public static StealableEntry[] Entries => m_Entries;
|
||||
|
||||
private static Type[] m_TypesOfEntries = null;
|
||||
private static Type[] m_TypesOfEntries;
|
||||
public static Type[] TypesOfEntires
|
||||
{
|
||||
get
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ namespace Server.Items
|
|||
public class Firebomb : Item
|
||||
{
|
||||
private Timer m_Timer;
|
||||
private int m_Ticks = 0;
|
||||
private int m_Ticks;
|
||||
private Mobile m_LitBy;
|
||||
private List<Mobile> m_Users;
|
||||
|
||||
|
|
|
|||
|
|
@ -123,8 +123,8 @@ namespace Server.Items
|
|||
}
|
||||
|
||||
private Timer m_Timer;
|
||||
private int m_ItemID = 0;
|
||||
private int m_Count = 0;
|
||||
private int m_ItemID;
|
||||
private int m_Count;
|
||||
|
||||
public void PlayMusic( Mobile m, MusicName music )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue