diff options
author | Tim Angus <tim@ngus.net> | 2003-02-22 03:33:14 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2003-02-22 03:33:14 +0000 |
commit | 15c5420a47c341ba68ebf1537d610db42ad8ba5d (patch) | |
tree | 7115d4177fde921dd8ad1b4e5c0da429768fc0f9 /src/cgame | |
parent | 9dea4c3a9f9ef389a79a40e7476527932c73a597 (diff) |
* Removed "You fragged x" message
* Slowed down turrets
* Increased points value of aliens
* Hopefully fixed bank/armoury bugs (ps.persistant[] clamped to 16bits?)
* G_Printf( ); only prints in nondedicated mode
* Commented out annoying ClientUserinfo changed LogPrintf
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgame/cg_event.c b/src/cgame/cg_event.c index ca13b0ab..992db57c 100644 --- a/src/cgame/cg_event.c +++ b/src/cgame/cg_event.c @@ -159,8 +159,8 @@ static void CG_Obituary( entityState_t *ent ) { char *s; - s = va( "You fragged %s", targetName ); - CG_CenterPrint( s, SCREEN_HEIGHT * 0.30, BIGCHAR_WIDTH ); +/* s = va( "You fragged %s", targetName ); + CG_CenterPrint( s, SCREEN_HEIGHT * 0.30, BIGCHAR_WIDTH );*/ // print the text message as well } |