This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/game/Chat.cpp b/src/game/Chat.cpp | |
index b1faba6..660367b 100644 | |
--- a/src/game/Chat.cpp | |
+++ b/src/game/Chat.cpp | |
@@ -725,6 +725,7 @@ ChatCommand* ChatHandler::getCommandTable() | |
{ "aura", SEC_ADMINISTRATOR, false, &ChatHandler::HandleAuraCommand, "", NULL }, | |
{ "unaura", SEC_ADMINISTRATOR, false, &ChatHandler::HandleUnAuraCommand, "", NULL }, | |
{ "announce", SEC_MODERATOR, true, &ChatHandler::HandleAnnounceCommand, "", NULL }, | |
+ { "nameannounce", SEC_MODERATOR, false, &ChatHandler::HandleNameAnnounceCommand, "", NULL }, | |
{ "notify", SEC_MODERATOR, true, &ChatHandler::HandleNotifyCommand, "", NULL }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/game/Language.h b/src/game/Language.h | |
index d408bfd..cfc1a5d 100644 | |
--- a/src/game/Language.h | |
+++ b/src/game/Language.h | |
@@ -1017,6 +1017,8 @@ enum MangosStrings | |
// FREE IDS 1700-9999 | |
+ LANG_AUTO_BROADCAST = 1700, | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/game/ChatHandler.cpp b/src/game/ChatHandler.cpp | |
index 9af048a..d94409a 100644 | |
--- a/src/game/ChatHandler.cpp | |
+++ b/src/game/ChatHandler.cpp | |
@@ -24,6 +24,7 @@ | |
#include "Opcodes.h" | |
#include "ObjectMgr.h" | |
#include "Chat.h" | |
+#include "Config/Config.h" | |
#include "Database/DatabaseEnv.h" |