- Changed MyRunUO Config bools back to static, to prevent unreachable code warnings.

- Removed unused fields in HalloweenHauntings.
This commit is contained in:
eos 2012-11-10 21:12:34 +00:00
parent ab116c4682
commit 1b2c3cb859
2 changed files with 3 additions and 6 deletions

View file

@ -17,13 +17,13 @@ namespace Server.Engines.MyRunUO
public const string DatabasePassword = "password";
// Should the database use transactions? This is recommended
public const bool UseTransactions = true;
public static bool UseTransactions = true;
// Use optimized table loading techniques? (LOAD DATA INFILE)
public const bool LoadDataInFile = true;
public static bool LoadDataInFile = true;
// This must be enabled if the database server is on a remote machine.
public const bool DatabaseNonLocal = ( DatabaseServer != "localhost" );
public static bool DatabaseNonLocal = ( DatabaseServer != "localhost" );
// Text encoding used
public static Encoding EncodingIO = Encoding.ASCII;

View file

@ -10,9 +10,6 @@ namespace Server.Engines.Events
{
public static Dictionary<PlayerMobile, ZombieSkeleton> ReAnimated { get { return m_ReAnimated; } set { m_ReAnimated = value; } }
private static bool m_Running;
private static bool m_AutoStart;
private static Timer m_Timer;
private static Timer m_ClearTimer;