mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 11:48:37 +00:00
Merge branch 'master' of https://github.com/EQEmu/Server into integration/multi-tenancy-expansions-repository
This commit is contained in:
+9
-3
@@ -101,6 +101,10 @@
|
||||
#endif
|
||||
|
||||
volatile bool RunLoops = true;
|
||||
#ifdef __FreeBSD__
|
||||
#include <pthread_np.h>
|
||||
#endif
|
||||
|
||||
extern volatile bool is_zone_loaded;
|
||||
|
||||
EntityList entity_list;
|
||||
@@ -371,7 +375,7 @@ int main(int argc, char** argv) {
|
||||
database.GetDecayTimes(npcCorpseDecayTimes);
|
||||
|
||||
LogInfo("Loading profanity list");
|
||||
if (!EQEmu::ProfanityManager::LoadProfanityList(&database))
|
||||
if (!EQ::ProfanityManager::LoadProfanityList(&database))
|
||||
LogError("Loading profanity list failed!");
|
||||
|
||||
LogInfo("Loading commands");
|
||||
@@ -399,7 +403,7 @@ int main(int argc, char** argv) {
|
||||
}
|
||||
}
|
||||
|
||||
EQEmu::InitializeDynamicLookups();
|
||||
EQ::InitializeDynamicLookups();
|
||||
LogInfo("Initialized dynamic dictionary entries");
|
||||
}
|
||||
|
||||
@@ -478,8 +482,10 @@ int main(int argc, char** argv) {
|
||||
EQStreamIdentifier stream_identifier;
|
||||
RegisterAllPatches(stream_identifier);
|
||||
|
||||
#ifndef WIN32
|
||||
#ifdef __linux__
|
||||
LogDebug("Main thread running with thread id [{}]", pthread_self());
|
||||
#elif defined(__FreeBSD__)
|
||||
LogDebug("Main thread running with thread id [{}]", pthread_getthreadid_np());
|
||||
#endif
|
||||
|
||||
bool worldwasconnected = worldserver.Connected();
|
||||
|
||||
Reference in New Issue
Block a user