summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/modules.h2
-rw-r--r--src/channels.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h
index 772f4ab5f..3f4be033a 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -1173,7 +1173,7 @@ class CoreExport Module : public Extensible
virtual int OnChangeLocalUserGECOS(User* user, const std::string &newhost);
/** Called whenever a topic is changed by a local user.
- * Return 1 to deny the topic change, or 0 to allow it.
+ * Return 1 to deny the topic change, 0 to check details on the change, -1 to let it through with no checks
* @param user The user changing the topic
* @param chan The channels who's topic is being changed
* @param topic The actual topic text
diff --git a/src/channels.cpp b/src/channels.cpp
index 19cfccc79..a0ba81a5f 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -81,7 +81,7 @@ int Channel::SetTopic(User *u, std::string &ntopic)
/* 0: check status, 1: don't, -1: disallow change silently */
FOREACH_RESULT(I_OnLocalTopicChange,OnLocalTopicChange(u,this,ntopic));
- if (MOD_RESULT == -1)
+ if (MOD_RESULT == 1)
return CMD_FAILURE;
else if (MOD_RESULT == 0)
{