From 774c1365326dc93f3787cb9001a383660253df12 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Mon, 25 Jan 2016 18:55:05 -0600 Subject: [PATCH] Fixed: Player.FallingScreamSpeed used minz as the maxz as well --- src/thingdef/thingdef_properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thingdef/thingdef_properties.cpp b/src/thingdef/thingdef_properties.cpp index 183cf27091..fd0636a707 100644 --- a/src/thingdef/thingdef_properties.cpp +++ b/src/thingdef/thingdef_properties.cpp @@ -2455,7 +2455,7 @@ DEFINE_CLASS_PROPERTY_PREFIX(player, GruntSpeed, F, PlayerPawn) DEFINE_CLASS_PROPERTY_PREFIX(player, FallingScreamSpeed, FF, PlayerPawn) { PROP_FIXED_PARM(minz, 0); - PROP_FIXED_PARM(maxz, 0); + PROP_FIXED_PARM(maxz, 1); defaults->FallingScreamMinSpeed = minz; defaults->FallingScreamMaxSpeed = maxz; }