From 64ee08d80bcba4ddb7cc391f99230459f0d814f7 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Mon, 14 Feb 2022 10:17:52 -0500 Subject: [PATCH] - fix: player landing sound was not properly playing, error in morph logic check --- wadsrc/static/zscript/actors/actor.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actors/actor.zs b/wadsrc/static/zscript/actors/actor.zs index 7be0f96019..cf7df8ad0b 100644 --- a/wadsrc/static/zscript/actors/actor.zs +++ b/wadsrc/static/zscript/actors/actor.zs @@ -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?