1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 17:23:14 +02:00

Not quite sure what I was thinking here

This commit is contained in:
Adam
2012-09-05 02:56:59 -04:00
parent 4c8fef264e
commit 02d943bfb0
+2 -2
View File
@@ -39,10 +39,10 @@ class MyForbidService : public ForbidService
const std::vector<ForbidData *> &forbids = this->GetForbids();
for (unsigned i = forbids.size(); i > 0; --i)
{
ForbidData *d = this->forbidData[i - 1];
ForbidData *d = forbids[i - 1];
if ((ftype == FT_NONE || ftype == d->type) && Anope::Match(mask, d->mask, false, true))
d->destroy();
return d;
}
return NULL;
}