diff --git a/Content.Server/StationEvents/Events/IonStormRule.cs b/Content.Server/StationEvents/Events/IonStormRule.cs index 54c0ca89d08..cd3cd63ae86 100644 --- a/Content.Server/StationEvents/Events/IonStormRule.cs +++ b/Content.Server/StationEvents/Events/IonStormRule.cs @@ -64,19 +64,15 @@ protected override void Started(EntityUid uid, IonStormRuleComponent comp, GameR { base.Started(uid, comp, gameRule, args); - // Frontier - Affect all silicon beings in the sector, not just on-station. - // if (!TryGetRandomStation(out var chosenStation)) - // return; - // End Frontier + if (!TryGetRandomStation(out var chosenStation)) + return; var query = EntityQueryEnumerator(); while (query.MoveNext(out var ent, out var lawBound, out var xform, out var target)) { - // Frontier - Affect all silicon beings in the sector, not just on-station. - // // only affect law holders on the station - // if (CompOrNull(xform.GridUid)?.Station != chosenStation) - // continue; - // End Frontier + // only affect law holders on the station + if (CompOrNull(xform.GridUid)?.Station != chosenStation) + continue; if (!RobustRandom.Prob(target.Chance)) continue;