summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-05-20 15:35:21 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-05-20 15:35:21 +0000
commitdce206a98676a425952f56c39468904fe0182e50 (patch)
tree8a9917b6fd314f22e205acdaf253819c240f6478
parentba0d375f7a28b529770791f4568d787aca6dcf96 (diff)
Update comment
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9778 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/command_parse.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index 14828cec7..0b2ea69c9 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -133,10 +133,7 @@ int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<s
new_parameters[splithere] = item.c_str();
- /* Execute the command handler over and over. If someone pulls our user
- * record out from under us (e.g. if we /kill a comma sep list, and we're
- * in that list ourselves) abort if we're gone.
- */
+ /* Execute the command handler. */
CommandObj->Handle(new_parameters, user);
dupes[item.c_str()] = true;