mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 14:25:38 +03:00
small bugfix
This commit is contained in:
parent
cef68cf821
commit
17cbec1f63
@ -328,7 +328,7 @@ void EventsMngr::parseValue(const char *sz)
|
|||||||
switch(condIter->second.type)
|
switch(condIter->second.type)
|
||||||
{
|
{
|
||||||
case '=': if (!strcmp(sz, condIter->second.sValue.c_str())) skip=true; break;
|
case '=': if (!strcmp(sz, condIter->second.sValue.c_str())) skip=true; break;
|
||||||
case '!': if (!strstr(sz, condIter->second.sValue.c_str())) skip=true; break;
|
case '!': if (strcmp(sz, condIter->second.sValue.c_str())) skip=true; break;
|
||||||
case '&': if (strstr(sz, condIter->second.sValue.c_str())) skip=true; break;
|
case '&': if (strstr(sz, condIter->second.sValue.c_str())) skip=true; break;
|
||||||
}
|
}
|
||||||
if (skip)
|
if (skip)
|
||||||
|
Loading…
Reference in New Issue
Block a user