From f62a72e38cbe354638fda7a9cb06e3f4e17301c1 Mon Sep 17 00:00:00 2001 From: Shroopy <46693163+Shroopy@users.noreply.github.com> Date: Tue, 26 Nov 2024 17:12:37 -0800 Subject: [PATCH] undo my unnecessary change --- .../create/content/kinetics/press/PressingBehaviour.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/simibubi/create/content/kinetics/press/PressingBehaviour.java b/src/main/java/com/simibubi/create/content/kinetics/press/PressingBehaviour.java index 85b398df4..38efd70aa 100644 --- a/src/main/java/com/simibubi/create/content/kinetics/press/PressingBehaviour.java +++ b/src/main/java/com/simibubi/create/content/kinetics/press/PressingBehaviour.java @@ -241,7 +241,7 @@ public class PressingBehaviour extends BeltProcessingBehaviour { float speed = specifics.getKineticSpeed(); if (speed == 0) return 0; - return (int) Mth.lerp(Mth.clamp(Math.abs(speed) / 512f, 0, 1), 0, 60); + return (int) Mth.lerp(Mth.clamp(Math.abs(speed) / 512f, 0, 1), 1, 60); } protected void spawnParticles() {