Bring pills back to 50 units maximum (#9626)

This commit is contained in:
Myctai
2022-07-15 02:40:47 +00:00
committed by GitHub
parent 3bbbb59bb1
commit 51e5d21ffb
4 changed files with 11 additions and 11 deletions

View File

@@ -290,7 +290,7 @@ namespace Content.Server.Chemistry.Components
return;
}
var actualVolume = FixedPoint2.Min(individualVolume, FixedPoint2.New(25));
var actualVolume = FixedPoint2.Min(individualVolume, FixedPoint2.New(50));
for (int i = 0; i < pillAmount; i++)
{
var pill = _entities.SpawnEntity("Pill", _entities.GetComponent<TransformComponent>(Owner).Coordinates);