From 2afe093ddb3dace68243d6c1da90aa6dd4f8b3dc Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Sat, 3 Aug 2002 07:04:18 +0000 Subject: [PATCH] Fixed constant gasping sound when you die in shallow water --- reaction/ChangeLog | 1 + reaction/game/bg_pmove.c | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/reaction/ChangeLog b/reaction/ChangeLog index 52fd6625..b4125f2d 100644 --- a/reaction/ChangeLog +++ b/reaction/ChangeLog @@ -21,6 +21,7 @@ * Fixed the Akimbo ammo when akimbos are not the primary weapon. * Fixed plost3 radio sounds in all radiopaks. * Damage is now only tracked for players hit that are not on your team. +* Fixed constant gasping sound when you die in shallow water # List fixes here for the 2.1 release diff --git a/reaction/game/bg_pmove.c b/reaction/game/bg_pmove.c index 9455b14c..74774ddb 100644 --- a/reaction/game/bg_pmove.c +++ b/reaction/game/bg_pmove.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.88 2002/08/03 07:04:18 jbravo +// Fixed constant gasping sound when you die in shallow water +// // Revision 1.87 2002/07/22 06:33:58 niceass // cleaned up the powerup code // @@ -2964,7 +2967,9 @@ void PmoveSingle(pmove_t * pmove) PM_Footsteps(); // entering / leaving water splashes - PM_WaterEvents(); + // JBravo: only if you are alive + if (pm->ps->stats[STAT_HEALTH] > 0) + PM_WaterEvents(); // snap some parts of playerstate to save network bandwidth trap_SnapVector(pm->ps->velocity);