From 0b3b9fe128e63c836ff08c637735068564470b8e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 6 Apr 2013 15:26:52 -0500 Subject: Fix toggling topiclock when the channel setting is changed --- modules/protocol/inspircd20.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'modules/protocol') diff --git a/modules/protocol/inspircd20.cpp b/modules/protocol/inspircd20.cpp index 2a21b9643..bbe069466 100644 --- a/modules/protocol/inspircd20.cpp +++ b/modules/protocol/inspircd20.cpp @@ -755,8 +755,14 @@ class ProtoInspIRCd : public Module EventReturn OnSetChannelOption(CommandSource &source, Command *cmd, ChannelInfo *ci, const Anope::string &setting) anope_override { - if (cmd->name == "chanserv/set/topiclock" && ci->c) - SendChannelMetadata(ci->c, "topiclock", setting.equals_ci("ON") ? "1" : ""); + if (cmd->name == "chanserv/topic" && ci->c) + { + + if (setting == "topiclock on") + SendChannelMetadata(ci->c, "topiclock", "1"); + else if (setting == "topiclock off") + SendChannelMetadata(ci->c, "topiclock", "0"); + } return EVENT_CONTINUE; } -- cgit