Skip to content

Commit 0515aaf

Browse files
author
Matthew Bate
committed
API Related Prep
1 parent 5763f78 commit 0515aaf

File tree

9 files changed

+255
-59
lines changed

9 files changed

+255
-59
lines changed

BHD-ServerManager/Classes/CoreObjects/CommonCore.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ public static class CommonCore
1717
public static chatInstance? instanceChat { get; set; }
1818
public static statInstance? instanceStats { get; set; }
1919
public static playerInstance? instancePlayers { get; set; }
20+
public static adminInstance? instanceAdmin { get; set; }
2021

2122
public static banInstance? instanceBans { get; set; }
2223
// Object: Ticker, Timer Constructor for periodic tasks
@@ -29,7 +30,8 @@ public static void InitializeCore()
2930
instanceChat = new chatInstance();
3031
instanceStats = new statInstance();
3132
instancePlayers = new playerInstance();
32-
instanceBans = DatabaseManager.LoadBanInstance();
33+
instanceAdmin = new adminInstance();
34+
instanceBans = DatabaseManager.LoadBanInstance();
3335

3436
// Initialize the Ticker
3537
Ticker = new Ticker();

0 commit comments

Comments
 (0)