summaryrefslogtreecommitdiff
path: root/src/modules/m_lockserv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_lockserv.cpp')
-rw-r--r--src/modules/m_lockserv.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/modules/m_lockserv.cpp b/src/modules/m_lockserv.cpp
index 6e92cfd40..7f1ae0bd5 100644
--- a/src/modules/m_lockserv.cpp
+++ b/src/modules/m_lockserv.cpp
@@ -68,15 +68,10 @@ private:
CommandLockserv lockcommand;
CommandUnlockserv unlockcommand;
- virtual void ResetLocked()
- {
- locked = false;
- }
-
public:
ModuleLockserv() : lockcommand(this, locked), unlockcommand(this, locked)
{
- ResetLocked();
+ locked = false;
ServerInstance->AddCommand(&lockcommand);
ServerInstance->AddCommand(&unlockcommand);
Implementation eventlist[] = { I_OnUserRegister, I_OnRehash, I_OnCheckReady };
@@ -90,7 +85,8 @@ public:
virtual void OnRehash(User* user)
{
- ResetLocked();
+ // Emergency way to unlock
+ if (!user) locked = false;
}
virtual ModResult OnUserRegister(LocalUser* user)
@@ -110,7 +106,7 @@ public:
virtual Version GetVersion()
{
- return Version("Allows locking of the server to stop all incoming connections till unlocked again", VF_VENDOR);
+ return Version("Allows locking of the server to stop all incoming connections until unlocked again", VF_VENDOR);
}
};