aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_cban.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_cban.cpp
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_cban.cpp')
-rw-r--r--src/modules/m_cban.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_cban.cpp b/src/modules/m_cban.cpp
index 0fa971c96..897bf7bfa 100644
--- a/src/modules/m_cban.cpp
+++ b/src/modules/m_cban.cpp
@@ -74,7 +74,7 @@ public:
class CBanFactory final
: public XLineFactory
{
- public:
+public:
CBanFactory() : XLineFactory("CBAN") { }
XLine* Generate(time_t set_time, unsigned long duration, const std::string& source, const std::string& reason, const std::string& xline_specific_mask) override
@@ -91,7 +91,7 @@ class CBanFactory final
class CommandCBan final
: public Command
{
- public:
+public:
CommandCBan(Module* Creator) : Command(Creator, "CBAN", 1, 3)
{
access_needed = CmdAccess::OPERATOR;
@@ -160,7 +160,7 @@ class ModuleCBan final
CommandCBan mycommand;
CBanFactory f;
- public:
+public:
ModuleCBan()
: Module(VF_VENDOR | VF_COMMON, "Adds the /CBAN command which allows server operators to prevent channels matching a glob from being created.")
, Stats::EventListener(this)