diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-08-09 16:38:10 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2011-08-09 16:38:10 +0200 |
commit | 2f67c704fe4860749256894a66fe17c113c23f69 (patch) | |
tree | 96b1146d64ed610cc86b9717ffa66d7b6f3cd73f | |
parent | 8348392af2542be8f272673a774f1d021858dd2c (diff) |
fixed the operserv forbid del command
-rw-r--r-- | modules/commands/os_forbid.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/commands/os_forbid.cpp b/modules/commands/os_forbid.cpp index d4b4c2b41..e982c3305 100644 --- a/modules/commands/os_forbid.cpp +++ b/modules/commands/os_forbid.cpp @@ -144,6 +144,7 @@ class CommandOSForbid : public Command { Log(LOG_ADMIN, source.u, this) << "to remove forbid " << d->mask << " of type " << subcommand; source.Reply(_("%s deleted from the %s forbid list."), d->mask.c_str(), subcommand.c_str()); + this->fs->RemoveForbid(d); } else source.Reply(_("Forbid on %s was not found."), entry.c_str()); |