diff options
author | M. Kristall <mkpdev@gmail.com> | 2009-10-28 19:22:57 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:11 +0000 |
commit | cf1234d63e48d4124bd9bd03ebb91b314f409e10 (patch) | |
tree | b39f298cee431bcaafc9858a9897463a30d4679d /src/game/g_public.h | |
parent | e3cfb28d459a57050a764e8048626497f4553b4d (diff) |
* Server- and client-side tab completion for commands handled by the game module
* Admin commands are just like all other commands now: no more !
("!map" was renamed to "changemap" since "map" already exists)
* Text in the chat ui beginning with / or \ is treated as a command unless
ui_chatCommands = 0 (default 1)
Diffstat (limited to 'src/game/g_public.h')
-rw-r--r-- | src/game/g_public.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/g_public.h b/src/game/g_public.h index abccafda..03bc789b 100644 --- a/src/game/g_public.h +++ b/src/game/g_public.h @@ -222,7 +222,10 @@ typedef enum { G_PARSE_READ_TOKEN, G_PARSE_SOURCE_FILE_AND_LINE, - G_SEND_GAMESTAT + G_SEND_GAMESTAT, + + G_ADDCOMMAND, + G_REMOVECOMMAND } gameImport_t; |