wesnothd: s/name/nick/ for inactive account warning message

This commit is contained in:
Ignacio R. Morelle 2011-06-24 08:48:02 +00:00
parent 789ac43a2f
commit 807896e8a5

View file

@ -1090,7 +1090,7 @@ void server::process_login(const network::connection sock,
// This name is registered but the account is not active
if(exists && !user_handler_->user_is_active(username)) {
send_warning(sock, "The nick '" + username + "' is inactive. You cannot claim ownership of this "
"name until you activate your account via email or ask an administrator to do it for you.", MP_NAME_INACTIVE_WARNING);
"nick until you activate your account via email or ask an administrator to do it for you.", MP_NAME_INACTIVE_WARNING);
//registered = false;
}
else if(exists) {