aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_cloaking.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_cloaking.cpp
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_cloaking.cpp')
-rw-r--r--src/modules/m_cloaking.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp
index c401d64ae..828262ed0 100644
--- a/src/modules/m_cloaking.cpp
+++ b/src/modules/m_cloaking.cpp
@@ -85,7 +85,7 @@ typedef std::vector<std::string> CloakList;
class CloakExtItem final
: public SimpleExtItem<CloakList>
{
- public:
+public:
CloakExtItem(Module* Creator)
: SimpleExtItem(Creator, "cloaks", ExtensionType::USER)
{
@@ -100,7 +100,7 @@ class CloakExtItem final
class CloakUser final
: public ModeHandler
{
- public:
+public:
bool active = false;
CloakExtItem ext;
std::string debounce_uid;
@@ -196,7 +196,7 @@ class CloakUser final
class CommandCloak final
: public Command
{
- public:
+public:
CommandCloak(Module* Creator) : Command(Creator, "CLOAK", 1)
{
access_needed = CmdAccess::OPERATOR;
@@ -209,7 +209,7 @@ class CommandCloak final
class ModuleCloaking final
: public Module
{
- public:
+public:
CloakUser cu;
CommandCloak ck;
std::vector<CloakInfo> cloaks;