aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_cloaking.cpp
diff options
context:
space:
mode:
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;