Reduce default metabolism rate from 1 to 0.5 (#5445)

This commit is contained in:
mirrorcult
2021-11-22 01:45:20 -07:00
committed by GitHub
parent 0e4c99f024
commit 1ca990c879
4 changed files with 4 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ namespace Content.Server.Chemistry.ReagentEffects
public override void Effect(ReagentEffectArgs args)
{
if (args.EntityManager.TryGetComponent(args.SolutionEntity, out ThirstComponent? thirst))
thirst.UpdateThirst(HydrationFactor * (float) args.Quantity);
thirst.UpdateThirst(HydrationFactor);
}
}
}