diff options
| author | 2017-09-05 17:54:40 +0100 | |
|---|---|---|
| committer | 2017-09-06 10:44:41 +0100 | |
| commit | b13b1b8a0613e48013ca9f6a5279559d0aee0f73 (patch) | |
| tree | 963c043afff8d92edfd774f034b2fb0b9f1e2517 /src/modules/m_topiclock.cpp | |
| parent | Change the numerics used by /COMMANDS to avoid a collision. (diff) | |
Convert uncontroversial anonymous numerics to use constants.
Diffstat (limited to 'src/modules/m_topiclock.cpp')
| -rw-r--r-- | src/modules/m_topiclock.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/modules/m_topiclock.cpp b/src/modules/m_topiclock.cpp index 340fbfdec..8a0712c3e 100644 --- a/src/modules/m_topiclock.cpp +++ b/src/modules/m_topiclock.cpp @@ -18,6 +18,12 @@ #include "inspircd.h" +enum +{ + // InspIRCd-specific. + ERR_TOPICLOCK = 744 +}; + class CommandSVSTOPIC : public Command { public: @@ -131,7 +137,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, chan->name, "TOPIC cannot be changed due to topic lock being active on the channel"); + user->WriteNumeric(ERR_TOPICLOCK, chan->name, "TOPIC cannot be changed due to topic lock being active on the channel"); return MOD_RES_DENY; } |
