aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_opermotd.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_opermotd.cpp
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_opermotd.cpp')
-rw-r--r--src/modules/m_opermotd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_opermotd.cpp b/src/modules/m_opermotd.cpp
index 975e79a0b..7f8680bb7 100644
--- a/src/modules/m_opermotd.cpp
+++ b/src/modules/m_opermotd.cpp
@@ -40,7 +40,7 @@ enum
class CommandOpermotd final
: public Command
{
- public:
+public:
file_cache opermotd;
CommandOpermotd(Module* Creator) : Command(Creator,"OPERMOTD", 0, 1)
@@ -82,11 +82,11 @@ class CommandOpermotd final
class ModuleOpermotd final
: public Module
{
- private:
+private:
CommandOpermotd cmd;
bool onoper;
- public:
+public:
ModuleOpermotd()
: Module(VF_VENDOR | VF_OPTCOMMON, "Adds the /OPERMOTD command which adds a special message of the day for server operators.")
, cmd(this)