aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_delaymsg.cpp
diff options
context:
space:
mode:
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)