diff options
| author | 2016-02-25 18:05:04 +0100 | |
|---|---|---|
| committer | 2016-02-25 18:05:04 +0100 | |
| commit | 761e6d75ba37b984998952940ed681e79e456142 (patch) | |
| tree | 002d219057b5b4fda5c49595eada3eb7e1e8d525 /src/modules/m_topiclock.cpp | |
| parent | m_dccallow Call WriteNumeric() in a loop when displaying help (diff) | |
| parent | Introduce Stats::Context, pass it to the OnStats hook and switch all code to it (diff) | |
Merge branch 'master+writenumeric'
Diffstat (limited to 'src/modules/m_topiclock.cpp')
| -rw-r--r-- | src/modules/m_topiclock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_topiclock.cpp b/src/modules/m_topiclock.cpp index 6053bc849..eba2b33f0 100644 --- a/src/modules/m_topiclock.cpp +++ b/src/modules/m_topiclock.cpp @@ -150,7 +150,7 @@ class ModuleTopicLock : public Module // Only fired for local users currently, but added a check anyway if ((IS_LOCAL(user)) && (topiclock.get(chan))) { - user->WriteNumeric(744, "%s :TOPIC cannot be changed due to topic lock being active on the channel", chan->name.c_str()); + user->WriteNumeric(744, chan->name, "TOPIC cannot be changed due to topic lock being active on the channel"); return MOD_RES_DENY; } |
