Fix bad prob value.

This commit is contained in:
Pieter-Jan Briers
2020-05-24 01:40:39 +02:00
parent 658c23ede1
commit ad10a59a8b

View File

@@ -21,7 +21,7 @@ namespace Content.Server.GameObjects.Components.Items.Storage.Fill
storage.Insert(Owner.EntityManager.SpawnEntity(prototype, Owner.Transform.GridPosition));
}
if (random.Prob(40))
if (random.Prob(0.4f))
{
Spawn("ToolboxEmergencyFilled");
}