summaryrefslogtreecommitdiff
path: root/modules/commands/hs_off.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/hs_off.cpp')
-rw-r--r--modules/commands/hs_off.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/commands/hs_off.cpp b/modules/commands/hs_off.cpp
index 27c6c0756..3ca6cc148 100644
--- a/modules/commands/hs_off.cpp
+++ b/modules/commands/hs_off.cpp
@@ -18,6 +18,7 @@ class CommandHSOff : public Command
public:
CommandHSOff(Module *creator) : Command(creator, "hostserv/off", 0, 0)
{
+ this->SetFlag(CFLAG_REQUIRE_USER);
this->SetDesc(_("Deactivates your assigned vhost"));
this->SetSyntax("");
}
@@ -25,9 +26,6 @@ class CommandHSOff : public Command
void Execute(CommandSource &source, const std::vector<Anope::string> &params) anope_override
{
User *u = source.GetUser();
- if (!u)
- return;
-
const NickAlias *na = NickAlias::Find(u->nick);
if (!na || !na->HasVhost())