Update Content.Server/Silicons/Laws/StartIonStormedSystem.cs

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
This commit is contained in:
Golden Can
2024-09-30 18:31:36 +02:00
committed by GitHub
parent 0cc1f32b3b
commit e75a71d7d3

View File

@@ -29,7 +29,7 @@ public sealed class StartIonStormedSystem : EntitySystem
if (!TryComp<IonStormTargetComponent>(uid, out var target))
return;
for (int currentIonStorm = 1; currentIonStorm <= component.IonStormAmount; currentIonStorm++)
for (int currentIonStorm = 0; currentIonStorm < component.IonStormAmount; currentIonStorm++)
{
_ionStorm.IonStormTarget(uid, lawBound, xform, target, null, true, true);
}