1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 04:16:37 +02:00

Fix for bs badwords deletion. Good find Adam.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2159 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
sjaz
2009-03-14 17:50:39 +00:00
parent ea5245f416
commit d2fd84d41f
+1 -1
View File
@@ -162,7 +162,7 @@ class CommandBSBadwords : public Command
for (i = 0; i < ci->bwcount; i++)
{
if (!ci->badwords[i].in_use)
if (ci->badwords[i].in_use && !stricmp(ci->badwords[i].word, word))
break;
}