diff options
author | PeGaSuS <droider.pc@gmail.com> | 2023-07-05 18:09:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-05 17:09:47 +0100 |
commit | 4e1f5cce80b11e576ded19126980097ebd8e77b0 (patch) | |
tree | 81db3c9f64ece5b3e095066cb31312872a5ed812 /modules | |
parent | da2ac3e8a2bfcf5da541eb07c3ca3786d1c2e8ec (diff) |
Tell users that they must identify to their account before using CONFIRM.
This only happens when a nickname is registered via webcpanel and said nickname is online.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/commands/ns_register.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_register.cpp b/modules/commands/ns_register.cpp index cfffc1413..bd188637c 100644 --- a/modules/commands/ns_register.cpp +++ b/modules/commands/ns_register.cpp @@ -83,7 +83,7 @@ class CommandNSConfirm : public Command source.Reply(_("Invalid passcode.")); } else - source.Reply(_("Invalid passcode.")); + source.Reply(NICK_IDENTIFY_REQUIRED); return; } |