File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ SOURCE is https://github.com/NathanKell/ModuleRCSFX
4040
4141CHANGELOG
4242v4.1
43- * Fix bug with fuel consumption and thrust (thrusterPower wasn't being applied right )
43+ * Fixed bug in thrust calculation (was 2% what it should be... )
4444* When in fullThrust mode, don't switch to full thrust unless thrust ratio already starts out at fullThrustMin (configurable).
4545
4646v4.0
Original file line number Diff line number Diff line change @@ -282,7 +282,6 @@ public override void OnStart(StartState state)
282282
283283 if ( success )
284284 {
285- thrustForce *= thrusterPower ;
286285 curThrust += thrustForce ;
287286 thrustForces . Add ( thrustForce ) ;
288287 if ( ! isJustForShow )
@@ -345,7 +344,7 @@ private void UpdatePropellantStatus()
345344 double propAvailable = 1.0d ;
346345
347346 if ( ! CheatOptions . InfiniteRCS )
348- propAvailable = RequestPropellant ( massFlow * thrusterPower * TimeWarp . fixedDeltaTime ) ;
347+ propAvailable = RequestPropellant ( massFlow * TimeWarp . fixedDeltaTime ) ;
349348
350349 totalForce = ( float ) ( massFlow * exhaustVel * propAvailable ) ;
351350
You can’t perform that action at this time.
0 commit comments