]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Update some comments
authorSamual <samual@xonotic.org>
Tue, 8 Nov 2011 16:45:23 +0000 (11:45 -0500)
committerSamual <samual@xonotic.org>
Tue, 8 Nov 2011 16:45:23 +0000 (11:45 -0500)
qcsrc/client/gamecommand.qc
qcsrc/server/gamecommand.qc

index 6cfeaf62f24e0927746cb96ecdb41ad2954e7ecb..4b23fe2f393c84da6d9df915e2dc4fd709f4b1a9 100644 (file)
@@ -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; }) \
index 281eb66a6e2205eebd88aa55cc0d86185bc14498..d40bc9ec38837ac364a1d8493e72407811cc4acd 100644 (file)
@@ -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) \