summaryrefslogtreecommitdiff
path: root/modules/commands/ns_set_kill.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-10-05 05:03:55 -0400
committerAdam <Adam@anope.org>2012-10-05 05:03:55 -0400
commiteff61c7a9708013f9617282c4f327bbe2b1bfb79 (patch)
tree655b0ff225a53446c5cfd60470988b759bf333fe /modules/commands/ns_set_kill.cpp
parent7c96227cd3dd9c562fb382a9af62e451846328fa (diff)
Add an event for when nick or channel options are set
Diffstat (limited to 'modules/commands/ns_set_kill.cpp')
-rw-r--r--modules/commands/ns_set_kill.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/commands/ns_set_kill.cpp b/modules/commands/ns_set_kill.cpp
index 8d0ea08cf..ca0f804d3 100644
--- a/modules/commands/ns_set_kill.cpp
+++ b/modules/commands/ns_set_kill.cpp
@@ -32,6 +32,11 @@ class CommandNSSetKill : public Command
}
NickCore *nc = na->nc;
+ EventReturn MOD_RESULT;
+ FOREACH_RESULT(I_OnSetNickOption, OnSetNickOption(source, this, nc, param));
+ if (MOD_RESULT == EVENT_STOP)
+ return;
+
if (param.equals_ci("ON"))
{
nc->SetFlag(NI_KILLPROTECT);