mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-11 07:42:15 +00:00
Fixed constant gasping sound when you die in shallow water
This commit is contained in:
parent
ae1cf584c2
commit
2afe093ddb
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue