diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/inspircd.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index f39ba03bc..962f84501 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -425,10 +425,6 @@ InspIRCd::InspIRCd(int argc, char** argv) Exit(EXIT_STATUS_LOG); } - /* set up fake client */ - this->FakeClient = new userrec(this); - this->FakeClient->SetFd(FD_MAGIC_NUMBER); - this->stats = new serverstats(); this->Timers = new TimerManager(this); this->Parser = new CommandParser(this); @@ -467,6 +463,10 @@ InspIRCd::InspIRCd(int argc, char** argv) for(i = 3; i < UUID_LENGTH - 1; i++) current_uid[i] = 'A'; + /* set up fake client */ + this->FakeClient = new userrec(this); + this->FakeClient->SetFd(FD_MAGIC_NUMBER); + if (!do_root) this->CheckRoot(); else |