Me stupid

This commit is contained in:
abel1502 2025-06-11 19:53:32 +03:00
parent 57eba8e6ec
commit 9c3e6e2ce4
No known key found for this signature in database
GPG Key ID: 076926596A536338

View File

@ -116,7 +116,7 @@ public class MachineFan extends BlockContainer implements IToolable, ITooltipPro
double coeff = push; double coeff = push;
if(!falloff) { if(falloff) {
double dist = e.getDistance(xCoord + 0.5, yCoord + 0.5, zCoord + 0.5); double dist = e.getDistance(xCoord + 0.5, yCoord + 0.5, zCoord + 0.5);
coeff *= 1.5 * (1 - dist / range / 2); coeff *= 1.5 * (1 - dist / range / 2);
} }