@@ -13,9 +13,16 @@ public sealed class CargoGiftsRule : StationEventSystem<CargoGiftsRuleComponent>
|
||||
[Dependency] private readonly CargoSystem _cargoSystem = default!;
|
||||
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
|
||||
[Dependency] private readonly GameTicker _ticker = default!;
|
||||
[Dependency] private readonly RampingStationEventSchedulerSystem _rampingEventSystem = default!; // WD
|
||||
|
||||
protected override void Added(EntityUid uid, CargoGiftsRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args)
|
||||
{
|
||||
if (_rampingEventSystem.CheckRampingEventRule()) // WD START
|
||||
{
|
||||
ForceEndSelf(uid, gameRule);
|
||||
return;
|
||||
} // WD END
|
||||
|
||||
base.Added(uid, component, gameRule, args);
|
||||
|
||||
var str = Loc.GetString(component.Announce,
|
||||
|
||||
@@ -15,11 +15,18 @@ namespace Content.Server.StationEvents.Events;
|
||||
public sealed class VentClogRule : StationEventSystem<VentClogRuleComponent>
|
||||
{
|
||||
[Dependency] private readonly SmokeSystem _smoke = default!;
|
||||
[Dependency] private readonly RampingStationEventSchedulerSystem _rampingEventSystem = default!; // WD
|
||||
|
||||
protected override void Started(EntityUid uid, VentClogRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args)
|
||||
{
|
||||
base.Started(uid, component, gameRule, args);
|
||||
|
||||
if (_rampingEventSystem.CheckRampingEventRule()) // WD START
|
||||
{
|
||||
ForceEndSelf(uid, gameRule);
|
||||
return;
|
||||
} // WD END
|
||||
|
||||
if (!TryGetRandomStation(out var chosenStation))
|
||||
return;
|
||||
|
||||
@@ -56,4 +63,15 @@ public sealed class VentClogRule : StationEventSystem<VentClogRuleComponent>
|
||||
Audio.PlayPvs(component.Sound, transform.Coordinates);
|
||||
}
|
||||
}
|
||||
|
||||
protected override void Added(EntityUid uid, VentClogRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) // WD
|
||||
{
|
||||
if (_rampingEventSystem.CheckRampingEventRule()) // WD START
|
||||
{
|
||||
ForceEndSelf(uid, gameRule);
|
||||
return;
|
||||
} // WD END
|
||||
|
||||
base.Added(uid, component, gameRule, args);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user