diff options
author | M. Kristall <mkpdev@gmail.com> | 2009-12-29 17:40:26 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:25 +0000 |
commit | a7389070c1c77ed83d8f3c850267e2bc8b398209 (patch) | |
tree | 8950304dde04d8c41703649860436392c100d82b /src/game | |
parent | c80dd4291732ab9da54371f2a4b848d4353f99f0 (diff) |
* Remove unnecessary security code introduced from ioq3 merge
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index d2bf150e..6ee9bf7b 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -696,7 +696,7 @@ static qboolean G_SayTo( gentity_t *ent, gentity_t *other, saymode_t mode, const return qfalse; } - trap_SendServerCommand( other-g_entities, va( "chat %d %d\"%s\"", + trap_SendServerCommand( other-g_entities, va( "chat %d %d \"%s\"", ent ? ent-g_entities : -1, mode, message ) ); |