From a475357dbaad1e7c6fa2c7e695212dbf6fd4a4a8 Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Mon, 24 Aug 2020 21:53:17 +0100 Subject: [PATCH] Allowed small animals to block-hop again --- common/src/sys/phys.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/sys/phys.rs b/common/src/sys/phys.rs index 532a88d48a..b16bb29991 100644 --- a/common/src/sys/phys.rs +++ b/common/src/sys/phys.rs @@ -333,7 +333,7 @@ impl<'a> System<'a> for Sys { // sizes let radius = radius.min(0.45); // * scale; let z_min = z_min; // * scale; - let z_max = z_max.clamped(1.0, 1.95); // * scale; + let z_max = z_max.clamped(1.2, 1.95); // * scale; // Probe distances let hdist = radius.ceil() as i32;