diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-03 17:24:05 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-03 17:24:05 +0000 |
commit | 2257e3266906fd3ec48b9290ed00d6ef3b897482 (patch) | |
tree | da320c4ea84647e1143fee9be526c4f0a9e65419 /src/commands.cpp | |
parent | 9f41b3b46591f6be8dd0d5b6fd2ca14c407f8fc4 (diff) |
Fix to bug #36 reported by Yeti
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@962 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 4ff6edc31..f3798b364 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -335,10 +335,16 @@ void handle_kill(char **parameters, int pcnt, userrec *user) { userrec *u = Find(parameters[0]); char killreason[MAXBUF]; - + log(DEBUG,"kill: %s %s",parameters[0],parameters[1]); if (u) { + int MOD_RESULT = 0; + FOREACH_RESULT(OnKill(user,u,parameters[1])); + if (MOD_RESULT) { + return; + } + if (strcmp(ServerName,u->server)) { // remote kill |