Fixed previous commit breaking GameServer variable naming.

This commit is contained in:
MobiusDevelopment
2021-06-21 22:41:13 +00:00
parent 03857d87ee
commit 38db997ea3

View File

@@ -81,7 +81,7 @@ public class GameServer extends Thread
protected final IdManager _idFactory; protected final IdManager _idFactory;
protected final SpawnTable _spawnTable; protected final SpawnTable _spawnTable;
protected final CharNameTable _charNametable; protected final CharNameTable _charNametable;
protected final GameTimeTaskManager _GameTimeTaskManager; protected final GameTimeTaskManager _gameTimeTaskManager;
protected final Announcements _announcements; protected final Announcements _announcements;
protected final MapRegionTable _mapRegions; protected final MapRegionTable _mapRegions;
protected final PriceListTable _pricelist; protected final PriceListTable _pricelist;
@@ -176,7 +176,7 @@ public class GameServer extends Thread
_modifiers = CharStatTable.getInstance(); _modifiers = CharStatTable.getInstance();
_world = World.getInstance(); _world = World.getInstance();
_spawnTable = SpawnTable.getInstance(); _spawnTable = SpawnTable.getInstance();
_GameTimeTaskManager = GameTimeTaskManager.getInstance(); _gameTimeTaskManager = GameTimeTaskManager.getInstance();
_announcements = Announcements.getInstance(); _announcements = Announcements.getInstance();
_mapRegions = MapRegionTable.getInstance(); _mapRegions = MapRegionTable.getInstance();
_pricelist = PriceListTable.getInstance(); _pricelist = PriceListTable.getInstance();