diff options
| author | 2021-12-28 13:41:49 +0000 | |
|---|---|---|
| committer | 2021-12-28 13:49:20 +0000 | |
| commit | 42970ad974d96bb007a2ece252acd02e9ef4ff45 (patch) | |
| tree | 194c4bc5ee4424f6d3d3dbaf5bd5b92b8739cde5 /src | |
| parent | Send an account id tag when account-tag & message-tags are enabled. (diff) | |
We only care about the first parameter to the nick command.
Nicknames can't have spaces so the trailing concatenation logic
here is not what users will expect.
Diffstat (limited to 'src')
| -rw-r--r-- | src/coremods/core_user/cmd_nick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_user/cmd_nick.cpp b/src/coremods/core_user/cmd_nick.cpp index 494e544cc..3848a38b9 100644 --- a/src/coremods/core_user/cmd_nick.cpp +++ b/src/coremods/core_user/cmd_nick.cpp @@ -29,7 +29,7 @@ #include "core_user.h" CommandNick::CommandNick(Module* parent) - : SplitCommand(parent, "NICK", 1, 1) + : SplitCommand(parent, "NICK", 1) { works_before_reg = true; syntax = "<newnick>"; |
