From: Samual Date: Tue, 8 Nov 2011 16:45:23 +0000 (-0500) Subject: Update some comments X-Git-Tag: xonotic-v0.6.0~188^2~28^2~230 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=040e249f10a88765465fc8d7279a666e68760f91;p=xonotic%2Fxonotic-data.pk3dir.git Update some comments --- diff --git a/qcsrc/client/gamecommand.qc b/qcsrc/client/gamecommand.qc index 6cfeaf62f..4b23fe2f3 100644 --- a/qcsrc/client/gamecommand.qc +++ b/qcsrc/client/gamecommand.qc @@ -260,6 +260,8 @@ void GameCommand(string msg) // Macro system for console commands // =================================== +// These functions are here specifically to add special + - commands to the game, and are not really normal commands. +// Please add client commands to the function above this, as this is only for special reasons. #define CONSOLE_COMMANDS_NORMAL \ CONSOLE_COMMAND("+showscores", { scoreboard_showscores = TRUE; }) \ CONSOLE_COMMAND("-showscores", { scoreboard_showscores = FALSE; }) \ diff --git a/qcsrc/server/gamecommand.qc b/qcsrc/server/gamecommand.qc index 281eb66a6..d40bc9ec3 100644 --- a/qcsrc/server/gamecommand.qc +++ b/qcsrc/server/gamecommand.qc @@ -1862,9 +1862,9 @@ void GameCommand_(float request) */ -// =========================== -// Macro system for commands -// =========================== +// ================================== +// Macro system for server commands +// ================================== // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;) #define SERVER_COMMANDS(request,arguments) \