Skip to content

Commit

Permalink
Merge branch 'master' of [email protected]:azerothcore/azerothcore-wotlk…
Browse files Browse the repository at this point in the history
….git into gh-master
  • Loading branch information
Yehonal committed Aug 8, 2016
2 parents e54bfb3 + ce20864 commit 6f7a046
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
7 changes: 6 additions & 1 deletion bin/db_assembler/db_assembler.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/bin/bash

SRCPATH=$(readlink -f "../../")
unamestr=`uname`
if [[ "$unamestr" == 'Darwin' ]]; then
SRCPATH=$(greadlink -f "../../")
else
SRCPATH=$(readlink -f "../../")
fi

source $SRCPATH"/bin/bash_shared/includes.sh"

Expand Down
2 changes: 1 addition & 1 deletion modules/dep/recastnavigation/Detour/DetourNavMesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <linux/types.h>
#endif
#endif
typedef uint64_t uint64;
typedef unsigned long uint64;
#endif

// Note: If you want to use 64-bit refs, change the types of both dtPolyRef & dtTileRef.
Expand Down
4 changes: 2 additions & 2 deletions src/server/authserver/authserver.conf.dist
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ WrongPass.BanType = 0
# section my.ini)
# ".;/path/to/unix_socket;username;password;database" - (use Unix sockets on
# Unix/Linux)
# Default: "127.0.0.1;3306;trinity;trinity;auth"
# Default: "127.0.0.1;3306;root;root;auth"

LoginDatabaseInfo = "127.0.0.1;3306;trinity;trinity;auth"
LoginDatabaseInfo = "127.0.0.1;3306;root;root;auth"

#
# LoginDatabase.WorkerThreads
Expand Down
2 changes: 1 addition & 1 deletion src/server/game/World/World.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ void World::LoadConfigSettings(bool reload)
///- Read the player limit and the Message of the day from the config file
if (!reload)
SetPlayerAmountLimit(sConfigMgr->GetIntDefault("PlayerLimit", 100));
SetMotd(sConfigMgr->GetStringDefault("Motd", "Welcome to a Sunwell Core Server."));
SetMotd(sConfigMgr->GetStringDefault("Motd", "Welcome to an AzerothCore server"));

///- Read ticket system setting from the config file
m_bool_configs[CONFIG_ALLOW_TICKETS] = sConfigMgr->GetBoolDefault("AllowTickets", true);
Expand Down
12 changes: 6 additions & 6 deletions src/server/worldserver/worldserver.conf.dist
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ LogsDir = ""
# section my.ini)
# ".;/path/to/unix_socket;username;password;database" - (use Unix sockets on
# Unix/Linux)
# Default: "127.0.0.1;3306;trinity;trinity;auth" - (LoginDatabaseInfo)
# "127.0.0.1;3306;trinity;trinity;world" - (WorldDatabaseInfo)
# "127.0.0.1;3306;trinity;trinity;characters" - (CharacterDatabaseInfo)
# Default: "127.0.0.1;3306;root;root;auth" - (LoginDatabaseInfo)
# "127.0.0.1;3306;root;root;world" - (WorldDatabaseInfo)
# "127.0.0.1;3306;root;root;characters" - (CharacterDatabaseInfo)

LoginDatabaseInfo = "127.0.0.1;3306;trinity;trinity;auth"
WorldDatabaseInfo = "127.0.0.1;3306;trinity;trinity;world"
CharacterDatabaseInfo = "127.0.0.1;3306;trinity;trinity;characters"
LoginDatabaseInfo = "127.0.0.1;3306;root;root;auth"
WorldDatabaseInfo = "127.0.0.1;3306;root;root;world"
CharacterDatabaseInfo = "127.0.0.1;3306;root;root;characters"

#
# LoginDatabase.WorkerThreads
Expand Down

0 comments on commit 6f7a046

Please sign in to comment.