Merge pull request #20863 from ChemicalRascal/master

Make compressor efficiency good, not bad
This commit is contained in:
Cheridan
2016-10-09 17:57:05 -05:00
committed by GitHub
+1 -1
View File
@@ -157,7 +157,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))