diff options
author | Adam <Adam@anope.org> | 2010-11-22 10:08:37 -0600 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-12-12 19:36:01 -0500 |
commit | 697dc8938279f33f2ac2c0b2248793c75de07b19 (patch) | |
tree | 3b8259dbded67f87f9e17742ebef5b0043e3ebdc /modules | |
parent | 4d342d955dbe604357c652a1ee09d77c9a38ec6d (diff) |
Added a default expiry time for suspended and forbidden nicks and channels
Diffstat (limited to 'modules')
-rw-r--r-- | modules/core/os_akill.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/os_akill.cpp b/modules/core/os_akill.cpp index 6473d20ef..fa1dca356 100644 --- a/modules/core/os_akill.cpp +++ b/modules/core/os_akill.cpp @@ -247,7 +247,7 @@ class CommandOSAKill : public Command if (SGLine->GetList().empty()) { - u->SendMessage(OperServ, OPER_AKILL_LIST_EMPTY); + u->SendMessage(OperServ, OPER_LIST_EMPTY); return MOD_CONT; } @@ -282,7 +282,7 @@ class CommandOSAKill : public Command { if (SGLine->GetList().empty()) { - u->SendMessage(OperServ, OPER_AKILL_LIST_EMPTY); + u->SendMessage(OperServ, OPER_LIST_EMPTY); return MOD_CONT; } @@ -326,7 +326,7 @@ class CommandOSAKill : public Command { if (SGLine->GetList().empty()) { - u->SendMessage(OperServ, OPER_AKILL_LIST_EMPTY); + u->SendMessage(OperServ, OPER_LIST_EMPTY); return MOD_CONT; } |