diff options
author | Adam <Adam@anope.org> | 2012-10-05 05:03:55 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-05 05:03:55 -0400 |
commit | eff61c7a9708013f9617282c4f327bbe2b1bfb79 (patch) | |
tree | 655b0ff225a53446c5cfd60470988b759bf333fe /modules/commands/ns_set_message.cpp | |
parent | 7c96227cd3dd9c562fb382a9af62e451846328fa (diff) |
Add an event for when nick or channel options are set
Diffstat (limited to 'modules/commands/ns_set_message.cpp')
-rw-r--r-- | modules/commands/ns_set_message.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/commands/ns_set_message.cpp b/modules/commands/ns_set_message.cpp index ccc204189..fa0ad7ec3 100644 --- a/modules/commands/ns_set_message.cpp +++ b/modules/commands/ns_set_message.cpp @@ -38,6 +38,11 @@ class CommandNSSetMessage : public Command return; } + 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_MSG); |