From 804fa98aafaa3648b23da363ad9dd15b3b9c07b7 Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 10 Apr 2020 17:55:19 +0200 Subject: [PATCH] Fix moveplayer command examples --- qcsrc/server/command/sv_cmd.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/server/command/sv_cmd.qc b/qcsrc/server/command/sv_cmd.qc index 5ff2d3472..e98680934 100644 --- a/qcsrc/server/command/sv_cmd.qc +++ b/qcsrc/server/command/sv_cmd.qc @@ -1145,8 +1145,8 @@ void GameCommand_moveplayer(int request, int argc) LOG_INFO(" 'clients' is a list (separated by commas) of player entity ID's or nicknames"); LOG_INFO(" 'destination' is what to send the player to, be it team or spectating"); LOG_INFO(" Full list of destinations here: \"spec, spectator, red, blue, yellow, pink, auto.\""); - LOG_INFO("Examples: sv_cmd moveplayer 1,3,5 red 3"); - LOG_INFO(" sv_cmd moveplayer 2 spec "); + LOG_INFO("Examples: sv_cmd moveplayer 1,3,5 red"); + LOG_INFO(" sv_cmd moveplayer 2 spec"); LOG_INFO("See also: ^2allspec, shuffleteams^7"); return; } -- 2.39.2