From: Nikolay S Date: Sat, 7 Sep 2024 18:19:46 +0000 (+0200) Subject: Merge remote-tracking branch 'origin/master' into morosophos/server-current4 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=61ad6f10fea217c910183ad740d1b5b52548c020;p=xonotic%2Fxonotic-data.pk3dir.git Merge remote-tracking branch 'origin/master' into morosophos/server-current4 --- 61ad6f10fea217c910183ad740d1b5b52548c020 diff --cc qcsrc/server/command/sv_cmd.qc index 3ce7fb8ec,7398329ee..baf2528f5 --- a/qcsrc/server/command/sv_cmd.qc +++ b/qcsrc/server/command/sv_cmd.qc @@@ -1821,8 -1793,8 +1857,9 @@@ SERVER_COMMAND(ircmsg, "Utility functio SERVER_COMMAND(lockteams, "Disable the ability for players to switch or enter teams") { GameCommand_lockteams(request); } SERVER_COMMAND(make_mapinfo, "Automatically rebuild mapinfo files") { GameCommand_make_mapinfo(request); } SERVER_COMMAND(moveplayer, "Change the team/status of a player") { GameCommand_moveplayer(request, arguments); } + SERVER_COMMAND(nextmap, "Set/Query the next map") { GameCommand_nextmap(request, arguments); } SERVER_COMMAND(nospectators, "Automatically remove spectators from a match") { GameCommand_nospectators(request); } +SERVER_COMMAND(printplayer, "Print information about a player") { GameCommand_printplayer(request, arguments); } SERVER_COMMAND(printstats, "Dump eventlog player stats and other score information") { GameCommand_printstats(request); } SERVER_COMMAND(radarmap, "Generate a radar image of the map") { GameCommand_radarmap(request, arguments); } SERVER_COMMAND(reducematchtime, "Decrease the timelimit value incrementally") { GameCommand_reducematchtime(request); }