using Content.Server.ParticleAccelerator.Components; using Content.Server.Power.EntitySystems; namespace Content.Server.ParticleAccelerator.EntitySystems { public sealed partial class ParticleAcceleratorSystem { private void InitializePowerBoxSystem() { SubscribeLocalEvent(PowerBoxReceivedChanged); } private static void PowerBoxReceivedChanged( EntityUid uid, ParticleAcceleratorPowerBoxComponent component, PowerConsumerReceivedChanged args) { component.Master?.PowerBoxReceivedChanged(args); } } }