aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_delaymsg.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/m_delaymsg.cpp
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_delaymsg.cpp')
-rw-r--r--src/modules/m_delaymsg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_delaymsg.cpp b/src/modules/m_delaymsg.cpp
index 3f1750632..af985e8da 100644
--- a/src/modules/m_delaymsg.cpp
+++ b/src/modules/m_delaymsg.cpp
@@ -26,7 +26,7 @@
class DelayMsgMode final
: public ParamMode<DelayMsgMode, IntExtItem>
{
- public:
+public:
IntExtItem jointime;
DelayMsgMode(Module* Parent)
: ParamMode<DelayMsgMode, IntExtItem>(Parent, "delaymsg", 'd')
@@ -54,12 +54,12 @@ class ModuleDelayMsg final
: public Module
, public CTCTags::EventListener
{
- private:
+private:
DelayMsgMode djm;
bool allownotice;
ModResult HandleMessage(User* user, const MessageTarget& target, bool notice);
- public:
+public:
ModuleDelayMsg()
: Module(VF_VENDOR, "Adds channel mode d (delaymsg) which prevents newly joined users from speaking until the specified number of seconds have passed.")
, CTCTags::EventListener(this)