Make FlammableTileReaction additive instead of multiplicative. (#36387)
Make FlammableTileReaction additive
This commit is contained in:
parent
3e98f1699d
commit
8da64c127a
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ namespace Content.Server.Chemistry.TileReactions
|
|||
if (environment == null || !atmosphereSystem.IsHotspotActive(tile.GridUid, tile.GridIndices))
|
||||
return FixedPoint2.Zero;
|
||||
|
||||
environment.Temperature *= MathF.Max(_temperatureMultiplier * reactVolume.Float(), 1f);
|
||||
environment.Temperature += MathF.Max(_temperatureMultiplier * reactVolume.Float(), 1f);
|
||||
atmosphereSystem.ReactTile(tile.GridUid, tile.GridIndices);
|
||||
|
||||
return reactVolume;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue