Merge pull request #192 from Naine/master

Fix my previous fix.
This commit is contained in:
John Reese 2016-02-18 23:07:52 -08:00
commit 366a804638
1 changed files with 3 additions and 3 deletions

View File

@ -874,15 +874,15 @@ class CPushMod : public CModule
options["highlight"].Split(" ", values, false);
values.push_back("%nick%");
bool matched = false;
bool negated = false;
for (VCString::iterator i = values.begin(); i != values.end(); i++)
{
CString value = i->AsLower();
char prefix = value[0];
bool negate_match = false;
bool matched = false;
bool negated = false;
if (prefix == '-')
{
negate_match = true;