Skip to content

Commit

Permalink
[Cleanup] Remove DisableStats(), EnableStats(), DisableLoginserver(),…
Browse files Browse the repository at this point in the history
… and EnableLoginserver() from world_config.h (#3107)

# Notes
- These are unused.
  • Loading branch information
Kinglykrab committed Mar 17, 2023
1 parent b3fb5f0 commit fa47dd7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions world/world_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,6 @@ class WorldConfig : public EQEmuConfig {
static void LockWorld() { if (_world_config) _world_config->Locked=true; }
static void UnlockWorld() { if (_world_config) _world_config->Locked=false; }

static void DisableStats() { if (_world_config) _world_config->UpdateStats=false; }
static void EnableStats() { if (_world_config) _world_config->UpdateStats=true; }

static void DisableLoginserver() { if (_world_config) _world_config->LoginDisabled=true; }
static void EnableLoginserver() { if (_world_config) _world_config->LoginDisabled=false; }

static void SetWorldAddress(std::string addr) { if (_world_config) _world_config->WorldAddress=addr; }
static void SetLocalAddress(std::string addr) { if (_world_config) _world_config->LocalAddress=addr; }

Expand Down

0 comments on commit fa47dd7

Please sign in to comment.