Allowed small animals to block-hop again

This commit is contained in:
Joshua Barretto 2020-08-24 21:53:17 +01:00
parent e4de32ac25
commit 9b812b0d8b

View File

@ -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;