aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_globops.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-03-18 13:51:23 +0000
committerGravatar Sadie Powell2020-03-18 13:51:23 +0000
commitb9acde9aaf0ddae8b821b21821724adcdbea9359 (patch)
tree7c76b8988dd9e31596ae2b114b15a762561e063d /src/modules/m_globops.cpp
parentRemove support for 0/1 in getBool. (diff)
parentAllow commands to override ERR_{NEEDSMOREPARAMS,NOTREGISTERED}. (diff)
downloadinspircd++-b9acde9aaf0ddae8b821b21821724adcdbea9359.tar.gz
inspircd++-b9acde9aaf0ddae8b821b21821724adcdbea9359.tar.bz2
inspircd++-b9acde9aaf0ddae8b821b21821724adcdbea9359.zip
Merge branch 'insp3' into master.
Diffstat (limited to 'src/modules/m_globops.cpp')
-rw-r--r--src/modules/m_globops.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_globops.cpp b/src/modules/m_globops.cpp
index 5e4715b24..85b2848cc 100644
--- a/src/modules/m_globops.cpp
+++ b/src/modules/m_globops.cpp
@@ -35,7 +35,8 @@ class CommandGlobops : public Command
public:
CommandGlobops(Module* Creator) : Command(Creator,"GLOBOPS", 1,1)
{
- flags_needed = 'o'; syntax = ":<message>";
+ flags_needed = 'o';
+ syntax = ":<message>";
}
CmdResult Handle(User* user, const Params& parameters) override