Skip to content

Commit

Permalink
Пропорции
Browse files Browse the repository at this point in the history
  • Loading branch information
Odleer committed Dec 11, 2024
1 parent 2384a32 commit 47e849e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Server/Atmos/Reactions/HealiumProductionReaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public ReactionResult React(GasMixture mixture, IGasMixtureHolder? holder, Atmos
var efficiency = 23.15f / mixture.Temperature;

var bZRemoved = 1f * rate;
var frezonRemoved = 3f * rate;
var healiumProduced = 4f * rate * efficiency;
var frezonRemoved = 9f * rate;
var healiumProduced = 10f * rate * efficiency;

if (bZRemoved > initBZ || frezonRemoved > initFrezon || mixture.Temperature > Atmospherics.T20C)
return ReactionResult.NoReaction;
Expand Down

0 comments on commit 47e849e

Please sign in to comment.