diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-18 02:57:46 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-18 02:57:46 +0000 |
commit | e50d016aa23083f81dcf181f68edb81c5b23c78d (patch) | |
tree | 2f627c4d456ec360a05c013832142df187e193d6 /src/commands | |
parent | 93a78a57ada6d5dab410c2bd3c4b02f4fa15684c (diff) |
Cull channels, warn when Extensible objects are not culled as they must be
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11901 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands')
-rw-r--r-- | src/commands/cmd_kick.cpp | 4 | ||||
-rw-r--r-- | src/commands/cmd_part.cpp | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/src/commands/cmd_kick.cpp b/src/commands/cmd_kick.cpp index d160b030b..65b22070c 100644 --- a/src/commands/cmd_kick.cpp +++ b/src/commands/cmd_kick.cpp @@ -66,9 +66,7 @@ CmdResult CommandKick::Handle (const std::vector<std::string>& parameters, User reason.assign(user->nick, 0, ServerInstance->Config->Limits.MaxKick); } - if (!c->KickUser(user, u, reason.c_str())) - /* Nobody left here, delete the Channel */ - delete c; + c->KickUser(user, u, reason.c_str()); return CMD_SUCCESS; } diff --git a/src/commands/cmd_part.cpp b/src/commands/cmd_part.cpp index a7a407ac8..c234ed681 100644 --- a/src/commands/cmd_part.cpp +++ b/src/commands/cmd_part.cpp @@ -61,9 +61,7 @@ CmdResult CommandPart::Handle (const std::vector<std::string>& parameters, User if (c) { - if (!c->PartUser(user, reason)) - /* Arse, who stole our channel! :/ */ - delete c; + c->PartUser(user, reason); } else { |