you get one (1) leg

This commit is contained in:
Bob 2026-02-15 22:06:43 +01:00
parent d842871ba8
commit 3a580a6b41
2 changed files with 2 additions and 1 deletions

View File

@ -101,7 +101,8 @@ public class TileEntityMachineIndustrialTurbine extends TileEntityTurbineBase im
public void onClientTick() { public void onClientTick() {
this.lastRotor = this.rotor; this.lastRotor = this.rotor;
this.rotor += this.spin * 30; float speed = this.spin >= 0.5 ? 30 : (float) (Math.pow(this.spin * 2, 0.5) * 30);
this.rotor += speed;
if(this.rotor >= 360) { if(this.rotor >= 360) {
this.lastRotor -= 360; this.lastRotor -= 360;

Binary file not shown.

After

Width:  |  Height:  |  Size: 727 B