Fixed water collision bug

This commit is contained in:
Joshua Barretto 2021-03-12 15:38:48 +00:00 committed by Avi Weinstock
parent 3fe3e5f183
commit db7d5a7771

View File

@ -658,6 +658,7 @@ impl<'a> PhysicsSystemData<'a> {
match (physics_state.in_liquid, physics_state_delta.in_liquid) {
// this match computes `x <|> y <|> liftA2 max x y`
(Some(x), Some(y)) => Some(x.max(y)),
(x @ Some(_), _) => x,
(_, y @ Some(_)) => y,
_ => None,
};