From af755c096403507542ee680bcded06769fee975f Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Sat, 29 Jun 2019 22:42:20 +0100 Subject: [PATCH] fmt --- common/src/sys/phys.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/src/sys/phys.rs b/common/src/sys/phys.rs index 17a4f6ec19..e8eb404833 100644 --- a/common/src/sys/phys.rs +++ b/common/src/sys/phys.rs @@ -261,7 +261,10 @@ impl<'a> System<'a> for Sys { if !collision_with(pos.0 + Vec3::unit_z() * 1.1, near_iter.clone()) && resolve_dir.z == 0.0 && vel.0.z <= 0.0 - && collision_with(pos.0 + resolve_dir - Vec3::unit_z() * 1.05, near_iter.clone()) + && collision_with( + pos.0 + resolve_dir - Vec3::unit_z() * 1.05, + near_iter.clone(), + ) { // ...block-hop! pos.0.z = (pos.0.z + 1.0).ceil();