1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

Fix message truncation in global/global and global/server.

This commit is contained in:
Sadie Powell
2024-04-28 08:52:16 +01:00
parent 5473311bd7
commit 1647968c50
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ private:
public:
CommandGLGlobal(Module *creator)
: Command(creator, "global/global", 0)
: Command(creator, "global/global", 0, 1)
, global("GlobalService", "Global")
{
this->SetDesc(_("Send a message to all users"));
+1 -1
View File
@@ -29,7 +29,7 @@ private:
public:
CommandGLServer(Module *creator)
: Command(creator, "global/server", 1)
: Command(creator, "global/server", 1, 2)
, global("GlobalService", "Global")
{
this->SetDesc(_("Send a message to all users on a server"));