Rotor strength is limited by mass of subgrid.
Submitted
I humbly request that mass no longer be part of the rotor's torque equation. Aside from it making no sense at all to me, this makes it terribly difficult to make lifting devices without adding a large amount of unnecessary mass to the subgrid.
float num = Math.Min((float) this.Torque, (double) this.TopGrid.Physics.Mass > 0.0 ? this.TopGrid.Physics.Mass * this.TopGrid.Physics.Mass : (float) this.Torque); this.m_motor.MaxForce = num; this.m_motor.MinForce = -num;
Replies have been locked on this page!