diff options
author | Ben Millwood <thebenmachine@gmail.com> | 2009-10-24 23:14:13 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:03 +0000 |
commit | 608ca46db22407342f56c7491c51de230eee05ce (patch) | |
tree | 609d20764920d009778310a22e183969bb7e2a11 /src/game | |
parent | 7326d47bb4400ab12aa09c22a820d1191cea0ffc (diff) |
* Parse IRC-like /me in chat text
* Assorted minor cleanups of CG_Say
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_cmds.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index 5f0d2199..6315ca2e 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -758,6 +758,27 @@ void G_Say( gentity_t *ent, saymode_t mode, const char *chatText ) } } +/* +================== +Cmd_ActionMessage_f + +This is just a wrapper for convenience when speaking from the console +================== +*/ +static void Cmd_ActionMessage_f( gentity_t *ent ) +{ + char text[ MAX_SAY_TEXT ]; + + Com_sprintf( text, sizeof( text ), "/me %s", ConcatArgs( 1 ) ); + + G_Say( ent, SAY_ALL, text ); +} + +/* +================== +Cmd_SayArea_f +================== +*/ static void Cmd_SayArea_f( gentity_t *ent ) { int entityList[ MAX_GENTITIES ]; @@ -2914,6 +2935,7 @@ commands_t cmds[ ] = { { "kill", CMD_TEAM|CMD_LIVING, Cmd_Kill_f }, { "levelshot", CMD_CHEAT, Cmd_LevelShot_f }, { "m", CMD_MESSAGE|CMD_INTERMISSION, Cmd_PrivateMessage_f }, + { "me", CMD_MESSAGE|CMD_INTERMISSION, Cmd_ActionMessage_f }, { "mt", CMD_MESSAGE|CMD_INTERMISSION, Cmd_PrivateMessage_f }, { "noclip", CMD_CHEAT_TEAM, Cmd_Noclip_f }, { "notarget", CMD_CHEAT|CMD_TEAM|CMD_LIVING, Cmd_Notarget_f }, |