mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-03-21 10:22:11 +00:00
- fix: player landing sound was not properly playing, error in morph logic check
This commit is contained in:
parent
add4ff12ac
commit
64ee08d80b
1 changed files with 1 additions and 1 deletions
|
@ -1291,7 +1291,7 @@ class Actor : Thinker native
|
|||
bool grunted;
|
||||
|
||||
// [RH] only make noise if alive
|
||||
if (self.health > 0 && !self.player.morphTics)
|
||||
if (self.health > 0 && self.player.morphTics == 0)
|
||||
{
|
||||
grunted = false;
|
||||
// Why should this number vary by gravity?
|
||||
|
|
Loading…
Reference in a new issue