From 493d74688481902ea0078047177503f8774da906 Mon Sep 17 00:00:00 2001 From: Sollace Date: Sat, 15 Oct 2022 14:05:12 +0200 Subject: [PATCH] Reduce the time before checking if a bat is hanging in the right position --- .../java/com/minelittlepony/unicopia/entity/player/Pony.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java b/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java index b0d619d2..2c4bf9ba 100644 --- a/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java +++ b/src/main/java/com/minelittlepony/unicopia/entity/player/Pony.java @@ -387,7 +387,7 @@ public class Pony extends Living implements Transmittable, Copieab if (isHanging()) { ((LivingEntityDuck)entity).setLeaningPitch(0); - if (!isClient() && (getSpecies() != Race.BAT || (ticksHanging++ > 40 && hangingPosition.filter(getOrigin().down()::equals).filter(this::canHangAt).isEmpty()))) { + if (!isClient() && (getSpecies() != Race.BAT || (ticksHanging++ > 2 && hangingPosition.filter(getOrigin().down()::equals).filter(this::canHangAt).isEmpty()))) { stopHanging(); } } else {