diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-14 19:22:04 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:50 +0000 |
commit | 98abaa24e6ba46aaa44a0d458a0f4f2208ace21d (patch) | |
tree | 08abc66855538bf031036a91fdd28377886a5a4b /src/game/g_local.h | |
parent | 7615d380395b6bfc33a8819810433ebf94990a09 (diff) |
* (bug 4306) Fix display formatting between different types of chat text
* Support parsing /say_area out of /say
* General cleanups/refactors to messaging code
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index f8c141ec..fea41a47 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -678,7 +678,7 @@ void G_ToggleFollow( gentity_t *ent ); void G_MatchOnePlayer( int *plist, int num, char *err, int len ); int G_ClientNumberFromString( char *s ); int G_ClientNumbersFromString( char *s, int *plist, int max ); -void G_Say( gentity_t *ent, int mode, const char *chatText ); +void G_Say( gentity_t *ent, saymode_t mode, const char *chatText ); int G_SayArgc( void ); qboolean G_SayArgv( int n, char *buffer, int bufferLength ); char *G_SayConcatArgs( int start ); @@ -953,7 +953,7 @@ void G_MapConfigs( const char *mapname ); void CalculateRanks( void ); void FindIntermissionPoint( void ); void G_RunThink( gentity_t *ent ); -void QDECL G_AdminMessage( gentity_t *ent, const char *fmt, ... ); +void G_AdminMessage( gentity_t *ent, const char *string ); void QDECL G_LogPrintf( const char *fmt, ... ); void SendScoreboardMessageToAllClients( void ); void QDECL G_Printf( const char *fmt, ... ); |