undo my unnecessary change

This commit is contained in:
Shroopy 2024-11-26 17:12:37 -08:00
parent e62d0400f3
commit f62a72e38c

View file

@ -241,7 +241,7 @@ public class PressingBehaviour extends BeltProcessingBehaviour {
float speed = specifics.getKineticSpeed(); float speed = specifics.getKineticSpeed();
if (speed == 0) if (speed == 0)
return 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() { protected void spawnParticles() {