diff options
author | M. Kristall <mkpdev@gmail.com> | 2011-01-11 04:21:15 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:50 +0000 |
commit | 4da76278ada8d004598e84753e4833fce79019ef (patch) | |
tree | 906d3f2a83ccc27103f30edcd289d86cce1c4ab8 /src/game/g_local.h | |
parent | bb4db330cb3f223ee786a57cfd2b603c1bfa053e (diff) |
* Refactor code handling player name matching
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index 8f1a6502..f55503c8 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -721,8 +721,7 @@ void G_StopFromFollowing( gentity_t *ent ); void G_FollowLockView( gentity_t *ent ); qboolean G_FollowNewClient( gentity_t *ent, int dir ); void G_ToggleFollow( gentity_t *ent ); -void G_MatchOnePlayer( int *plist, int num, char *err, int len ); -int G_ClientNumberFromString( char *s ); +int G_ClientNumberFromString( char *s, char *err, int len ); int G_ClientNumbersFromString( char *s, int *plist, int max ); char *ConcatArgs( int start ); void G_Say( gentity_t *ent, saymode_t mode, const char *chatText ); |