Stomach YAML tweaks (short-term satiety) (#9326)
This commit is contained in:
@@ -24,7 +24,7 @@ namespace Content.Server.Body.Components
|
||||
/// Initial internal solution storage volume
|
||||
/// </summary>
|
||||
[DataField("maxVolume")]
|
||||
public FixedPoint2 InitialMaxVolume { get; private set; } = FixedPoint2.New(100);
|
||||
public FixedPoint2 InitialMaxVolume { get; private set; } = FixedPoint2.New(20);
|
||||
|
||||
/// <summary>
|
||||
/// Time in seconds between reagents being ingested and them being
|
||||
|
||||
@@ -290,7 +290,7 @@ namespace Content.Server.Chemistry.Components
|
||||
return;
|
||||
}
|
||||
|
||||
var actualVolume = FixedPoint2.Min(individualVolume, FixedPoint2.New(50));
|
||||
var actualVolume = FixedPoint2.Min(individualVolume, FixedPoint2.New(20));
|
||||
for (int i = 0; i < pillAmount; i++)
|
||||
{
|
||||
var pill = _entities.SpawnEntity("Pill", _entities.GetComponent<TransformComponent>(Owner).Coordinates);
|
||||
|
||||
Reference in New Issue
Block a user