From ddaa001dafb5122e6e363e4acbbe6ce045b7b104 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 21 Jan 2013 22:31:16 -0500 Subject: Merge usefulness of Flags and Extensible classes into Extensible, made most flags we have juse strings instead of defines/enums --- modules/commands/ns_status.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/ns_status.cpp') diff --git a/modules/commands/ns_status.cpp b/modules/commands/ns_status.cpp index 2a8625f81..1d1637177 100644 --- a/modules/commands/ns_status.cpp +++ b/modules/commands/ns_status.cpp @@ -18,9 +18,9 @@ class CommandNSStatus : public Command public: CommandNSStatus(Module *creator) : Command(creator, "nickserv/status", 0, 16) { - this->SetFlag(CFLAG_ALLOW_UNREGISTERED); this->SetDesc(_("Returns the owner status of the given nickname")); this->SetSyntax(_("\037nickname\037...")); + this->AllowUnregistered(true); } void Execute(CommandSource &source, const std::vector ¶ms) anope_override -- cgit