]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Add another alias, plus make some of the warnings more stern for people adding new...
authorSamual <samual@xonotic.org>
Mon, 26 Dec 2011 04:14:14 +0000 (23:14 -0500)
committerSamual <samual@xonotic.org>
Mon, 26 Dec 2011 04:14:14 +0000 (23:14 -0500)
commands.cfg
qcsrc/client/command/cl_cmd.qc
qcsrc/server/command/cmd.qc
qcsrc/server/command/common.qc
qcsrc/server/command/sv_cmd.qc
qcsrc/server/command/vote.qc

index 22002577728ca69ee05c5adc8457b48dc43a4da7..22acccd88f9580f52b93c54579b7805bd664d1b3 100644 (file)
@@ -88,6 +88,7 @@ if_client alias blurtest "cl_cmd blurtest"
 if_client alias debugmodel "cl_cmd debugmodel ${* ?}"
 //if_client alias handlevote "cl_cmd handlevote ${* ?}"
 if_client alias hud "cl_cmd hud ${* ?}"
+if_client alias localprint "cl_cmd localprint ${* ?}"
 //if_client alias mv_download "cl_cmd mv_download ${* ?}"
 if_client alias sendcvar "cl_cmd sendcvar ${* ?}"
 //if_client alias settemp "cl_cmd settemp ${* ?}"
index fc1e762b75a273375c9d447cfebb2e88af94cf43..19c9dbcfb5d7c2be78aa3dfc988b51180b69327b 100644 (file)
@@ -352,7 +352,8 @@ void LocalCommand_settemp(float request, float argc)
        }
 }
 
-/* use this when creating a new command, making sure to place it in alphabetical order.
+/* use this when creating a new command, making sure to place it in alphabetical order... also,
+** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
 void LocalCommand_(float request)
 {
        switch(request)
index eae5deaa6e72f90b11f87fa42e82db7dcb8de487..d23ef5b1082a4786039f6883029e3131ef39056b 100644 (file)
@@ -516,7 +516,8 @@ void ClientCommand_voice(float request, float argc, string command) // legacy
        }
 }
 
-/* use this when creating a new command, making sure to place it in alphabetical order.
+/* use this when creating a new command, making sure to place it in alphabetical order... also,
+** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
 void ClientCommand_(float request)
 {
        switch(request)
index 8c13dc58a523e6680c44cf7ee62f3998b28d1ffb..58ad46be6339befb77b2414f451a683c23c9fc8b 100644 (file)
@@ -554,7 +554,8 @@ void CommonCommand_who(float request, entity caller, float argc)
        }
 }
 
-/* use this when creating a new command, making sure to place it in alphabetical order.
+/* use this when creating a new command, making sure to place it in alphabetical order... also,
+** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
 void CommonCommand_(float request, entity caller)
 {
        switch(request)
index 68a8e9f10d3cae65454eb779806e4531f7a728e2..3dfaf8b275f07eab99e0776170c83ba5626393d9 100644 (file)
@@ -1688,7 +1688,8 @@ void GameCommand_warp(float request, float argc)
        }
 }
 
-/* use this when creating a new command, making sure to place it in alphabetical order.
+/* use this when creating a new command, making sure to place it in alphabetical order... also,
+** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
 void GameCommand_(float request)
 {
        switch(request)
index f5c7f0ccb75da68c6dfcb616aebaf0e906f4bd23..0f0d431d10f0db132ce39ec9343e1c4d8c153c3d 100644 (file)
@@ -865,7 +865,8 @@ void VoteCommand_yes(float request, entity caller) // CLIENT ONLY
        }
 }
 
-/* use this when creating a new command, making sure to place it in alphabetical order.
+/* use this when creating a new command, making sure to place it in alphabetical order... also,
+** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
 void VoteCommand_(float request)
 {
        switch(request)