aboutsummaryrefslogtreecommitdiff
path: root/src/game/Level2.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2008-12-30 16:12:56 -0600
committermegamage <none@none>2008-12-30 16:12:56 -0600
commit32f571506bacb097b85996e87702afbe34d26961 (patch)
treed803172423b818fd9d767f058c26a4d05f1b35fe /src/game/Level2.cpp
parent3d1d45405546062357c019f0164f8529552fd060 (diff)
*Fix build in Windows.
--HG-- branch : trunk
Diffstat (limited to 'src/game/Level2.cpp')
-rw-r--r--src/game/Level2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Level2.cpp b/src/game/Level2.cpp
index 063e473504e..319ae608f7c 100644
--- a/src/game/Level2.cpp
+++ b/src/game/Level2.cpp
@@ -1996,7 +1996,7 @@ bool ChatHandler::HandleTicketCommand(const char* args)
bool accept = m_session->GetPlayer()->isAcceptTickets();
- PSendSysMessage(LANG_COMMAND_TICKETCOUNT, count, accept ? GetMangosString(LANG_ON) : GetMangosString(LANG_OFF));
+ PSendSysMessage(LANG_COMMAND_TICKETCOUNT, count, accept ? GetTrinityString(LANG_ON) : GetTrinityString(LANG_OFF));
return true;
}
@@ -3523,7 +3523,7 @@ bool ChatHandler::HandleLookupEventCommand(const char* args)
if (Utf8FitTo(descr, wnamepart))
{
- char const* active = activeEvents.find(id) != activeEvents.end() ? GetMangosString(LANG_ACTIVE) : "";
+ char const* active = activeEvents.find(id) != activeEvents.end() ? GetTrinityString(LANG_ACTIVE) : "";
if(m_session)
PSendSysMessage(LANG_EVENT_ENTRY_LIST_CHAT,id,id,eventData.description.c_str(),active );