From 111e880bee11be3687bf4a06ed5c768c98bbc1a6 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Thu, 11 Dec 2003 01:29:18 +0000 Subject: * Upped *.particle file size limit to 32kb (never thought that would be an issue :) * Added "bounce cull" to particle syntax --- src/game/g_combat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game') diff --git a/src/game/g_combat.c b/src/game/g_combat.c index f820b2b0..eb17c7e2 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -737,7 +737,7 @@ void G_InitDamageLocations( void ) continue; } - if ( len >= MAX_LOCDAMAGE_TEXT ) + if( len >= MAX_LOCDAMAGE_TEXT ) { G_Printf( va( S_COLOR_RED "file too large: %s is %i, max allowed is %i", filename, len, MAX_LOCDAMAGE_TEXT ) ); trap_FS_FCloseFile( fileHandle ); @@ -762,7 +762,7 @@ void G_InitDamageLocations( void ) if ( !fileHandle ) continue; - if ( len >= MAX_LOCDAMAGE_TEXT ) + if( len >= MAX_LOCDAMAGE_TEXT ) { G_Printf( va( S_COLOR_RED "file too large: %s is %i, max allowed is %i", filename, len, MAX_LOCDAMAGE_TEXT ) ); trap_FS_FCloseFile( fileHandle ); -- cgit