From 6fc111ccb6650a67f014977b2e7ebc2fb5b16790 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sat, 29 Oct 2022 15:44:01 +0100 Subject: Rename session registration to connection to avoid a semantic conflict. We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works. --- src/commands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commands.cpp') diff --git a/src/commands.cpp b/src/commands.cpp index bae8ef10b..c35e5d2cb 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -76,9 +76,9 @@ void Command::TellNotEnoughParameters(LocalUser* user, const Params& parameters) } } -void Command::TellNotRegistered(LocalUser* user, const Params& parameters) +void Command::TellNotFullyConnected(LocalUser* user, const Params& parameters) { - user->WriteNumeric(ERR_NOTREGISTERED, name, "You have not registered."); + user->WriteNumeric(ERR_NOTREGISTERED, name, "You must be fully connected to use this command."); } SplitCommand::SplitCommand(Module* me, const std::string& cmd, unsigned int minpara, unsigned int maxpara) -- cgit v1.3.1-10-gc9f91