Removed unused var m_bTriggerWasSilent from core ChatTriggers (bug 5863, r=asherkin).
This commit is contained in:
parent
57e1c7d55f
commit
1824826474
@ -56,7 +56,7 @@ ChatTriggers g_ChatTriggers;
|
||||
bool g_bSupressSilentFails = false;
|
||||
|
||||
ChatTriggers::ChatTriggers() : m_pSayCmd(NULL), m_bWillProcessInPost(false),
|
||||
m_bTriggerWasSilent(false), m_ReplyTo(SM_REPLY_CONSOLE)
|
||||
m_ReplyTo(SM_REPLY_CONSOLE)
|
||||
{
|
||||
m_PubTrigger = sm_strdup("!");
|
||||
m_PrivTrigger = sm_strdup("/");
|
||||
@ -301,7 +301,6 @@ void ChatTriggers::OnSayCommand_Pre()
|
||||
* We'll execute it in post.
|
||||
*/
|
||||
m_bWillProcessInPost = true;
|
||||
m_bTriggerWasSilent = is_silent;
|
||||
}
|
||||
|
||||
cell_t res = CallOnClientSayCommand(client);
|
||||
|
@ -86,7 +86,6 @@ private:
|
||||
char *m_PrivTrigger;
|
||||
size_t m_PrivTriggerSize;
|
||||
bool m_bWillProcessInPost;
|
||||
bool m_bTriggerWasSilent;
|
||||
bool m_bIsChatTrigger;
|
||||
bool m_bWasFloodedMessage;
|
||||
bool m_bPluginIgnored;
|
||||
|
Loading…
Reference in New Issue
Block a user