From 040e249f10a88765465fc8d7279a666e68760f91 Mon Sep 17 00:00:00 2001 From: Samual Date: Tue, 8 Nov 2011 11:45:23 -0500 Subject: [PATCH] Update some comments --- qcsrc/client/gamecommand.qc | 2 ++ qcsrc/server/gamecommand.qc | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) 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) \ -- 2.39.2