aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/scripts')
-rw-r--r--src/server/scripts/World/chat_log.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/scripts/World/chat_log.cpp b/src/server/scripts/World/chat_log.cpp
index 87dba586678..c11d2a0ac14 100644
--- a/src/server/scripts/World/chat_log.cpp
+++ b/src/server/scripts/World/chat_log.cpp
@@ -95,17 +95,17 @@ class ChatLogScript : public PlayerScript
player->GetName().c_str(), msg.c_str());
break;
- case CHAT_MSG_BATTLEGROUND:
+ case CHAT_MSG_INSTANCE_CHAT:
if (lang != LANG_ADDON)
- TC_LOG_DEBUG("chat.log.bg", "Player %s tells battleground with leader %s: %s",
+ TC_LOG_DEBUG("chat.log.bg", "Player %s tells instance with leader %s: %s",
player->GetName().c_str(), group ? group->GetLeaderName() : "<unknown>", msg.c_str());
else
- TC_LOG_DEBUG("chat.log.addon.bg", "Player %s tells battleground with leader %s: %s",
+ TC_LOG_DEBUG("chat.log.addon.bg", "Player %s tells instance with leader %s: %s",
player->GetName().c_str(), group ? group->GetLeaderName() : "<unknown>", msg.c_str());
break;
- case CHAT_MSG_BATTLEGROUND_LEADER:
- TC_LOG_DEBUG("chat.log.bg", "Leader player %s tells battleground: %s",
+ case CHAT_MSG_INSTANCE_CHAT_LEADER:
+ TC_LOG_DEBUG("chat.log.bg", "Leader player %s tells instance: %s",
player->GetName().c_str(), msg.c_str());
break;
}