Fix incorrect use of atmos dt (#29112)
This commit is contained in:
parent
6f738b0b43
commit
e92691eb54
|
|
@ -179,7 +179,7 @@ public sealed class TegSystem : EntitySystem
|
|||
component.LastGeneration = electricalEnergy;
|
||||
|
||||
// Turn energy (at atmos tick rate) into wattage.
|
||||
var power = electricalEnergy * _atmosphere.AtmosTickRate;
|
||||
var power = electricalEnergy / args.dt;
|
||||
// Add ramp factor. This magics slight power into existence, but allows us to ramp up.
|
||||
supplier.MaxSupply = power * component.RampFactor;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue