diff --git a/code/modules/power/turbine.dm b/code/modules/power/turbine.dm index b64323c9ec6..abbfc960e95 100644 --- a/code/modules/power/turbine.dm +++ b/code/modules/power/turbine.dm @@ -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))