Simulate command in minutes for real (#36808)

* 60
This commit is contained in:
IProduceWidgets
2025-04-22 18:20:45 -04:00
committed by GitHub
parent 14b5496c33
commit 4fa808ace5

View File

@@ -121,7 +121,7 @@ namespace Content.Server.StationEvents
for (var i = 0; i < rounds; i++)
{
var curTime = TimeSpan.Zero;
var randomEndTime = _random.NextGaussian(roundEndMean, roundEndStdDev); // Its in minutes, should probably be a better time format once we get that in toolshed like [hh:mm:ss]
var randomEndTime = _random.NextGaussian(roundEndMean, roundEndStdDev) * 60; // Its in minutes, should probably be a better time format once we get that in toolshed like [hh:mm:ss]
if (randomEndTime <= 0)
continue;