Merge pull request #8132 from Xsingular/Tur

Fixed efficiency math in Turbine.dm
This commit is contained in:
tigercat2000
2017-09-24 13:15:09 -07:00
committed by GitHub
+1 -1
View File
@@ -156,7 +156,7 @@
// RPM function to include compression friction - be advised that too low/high of a compfriction value can make things screwy
rpm = max(0, rpm - (rpm*rpm)/(COMPFRICTION/efficiency))
rpm = max(0, rpm - (rpm*rpm)/(COMPFRICTION*efficiency))
if(starter && !(stat & NOPOWER))