diff options
| author | Spp <spp@jorge.gr> | 2012-10-23 14:16:05 +0200 |
|---|---|---|
| committer | Spp <spp@jorge.gr> | 2012-10-23 14:16:05 +0200 |
| commit | 60d4343d8e8183e170ec833b43ec1254d5752c80 (patch) | |
| tree | 718b83fa9d886610bb281785d6a19b3ea0d5ba4a /src/server/worldserver | |
| parent | b73a5f32b07c227abc9c03a3348bf6d786107c30 (diff) | |
| parent | 663db1cee3ab9bd3de76f210bc7c178f4991953e (diff) | |
Merge branch 'master' into 4.3.4
Conflicts:
src/server/game/Spells/Spell.cpp
src/server/shared/Logging/Appender.h
Diffstat (limited to 'src/server/worldserver')
| -rwxr-xr-x | src/server/worldserver/Main.cpp | 8 | ||||
| -rw-r--r-- | src/server/worldserver/worldserver.conf.dist | 11 |
2 files changed, 11 insertions, 8 deletions
diff --git a/src/server/worldserver/Main.cpp b/src/server/worldserver/Main.cpp index 7e43cf87dfc..16fbca2597d 100755 --- a/src/server/worldserver/Main.cpp +++ b/src/server/worldserver/Main.cpp @@ -104,13 +104,13 @@ extern int main(int argc, char **argv) if (strcmp(argv[c], "install") == 0) { if (WinServiceInstall()) - printf("Installing service"); + printf("Installing service\n"); return 1; } else if (strcmp(argv[c], "uninstall") == 0) { if (WinServiceUninstall()) - printf("Uninstalling service"); + printf("Uninstalling service\n"); return 1; } else @@ -131,8 +131,8 @@ extern int main(int argc, char **argv) if (!ConfigMgr::Load(cfg_file)) { - printf("Invalid or missing configuration file : %s", cfg_file); - printf("Verify that the file exists and has \'[worldserver]' written in the top of the file!"); + printf("Invalid or missing configuration file : %s\n", cfg_file); + printf("Verify that the file exists and has \'[worldserver]' written in the top of the file!\n"); return 1; } sLog->outInfo(LOG_FILTER_WORLDSERVER, "Using configuration file %s.", cfg_file); diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 6e9d40b6fe8..f8cb61d659d 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -1097,12 +1097,15 @@ Command.LookupMaxResults = 0 AllowTickets = 1 # -# DungeonFinder.Enable +# DungeonFinder.OptionsMask # Description: Dungeon and raid finder system. -# Default: 1 - (Enabled) -# 0 - (Disabled) +# Value is a bitmask consisting of: +# LFG_OPTION_ENABLE_DUNGEON_FINDER = 1, Enable the dungeon finder browser +# LFG_OPTION_ENABLE_RAID_BROWSER = 2, Enable the raid browser +# Default: 1 + +DungeonFinder.OptionsMask = 1 -DungeonFinder.Enable = 1 # # DBC.EnforceItemAttributes |
