From b598127ebf69e7c7f7d48ead1d6ac9105db7d4d6 Mon Sep 17 00:00:00 2001 From: p0wer Date: Tue, 23 Feb 2010 21:59:36 -0600 Subject: Compile fix for past commits. Seems I'm a bit rusty. :P --HG-- branch : trunk --- src/game/Channel.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/game/Channel.cpp b/src/game/Channel.cpp index 5b0ce8ffa04..3ce71bb1109 100644 --- a/src/game/Channel.cpp +++ b/src/game/Channel.cpp @@ -19,6 +19,7 @@ */ #include "Channel.h" +#include "Chat.h" #include "ObjectMgr.h" #include "SocialMgr.h" #include "World.h" @@ -367,11 +368,13 @@ void Channel::Password(uint64 p, const char *pass) if(plr) sec = plr->GetSession()->GetSecurity(); + ChatHandler chat(plr); + if(!m_public && sec <= SEC_MODERATOR) { plName = plr->GetName(); normalizePlayerName(plName); - PSendSysMessage(LANG_CHANNEL_NOT_PUBLIC, plName.c_str()); + chat.PSendSysMessage(LANG_CHANNEL_NOT_PUBLIC, plName.c_str()); return; } -- cgit v1.2.3