From 5f037039de1180b04661f0003473496e84f88b8b Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sat, 3 Oct 2009 11:38:01 +0000 Subject: * Make 1st person weapon animation random (but unpredictable) --- src/game/bg_pmove.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index aa3d6691..77f0a4a8 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -3261,7 +3261,7 @@ static void PM_Weapon( void ) } else { - int num = abs( pm->ps->weaponTime ); + int num = rand( ); //FIXME: it would be nice to have these hard coded policies in // weapon.cfg -- cgit