using Content.Shared.Throwing; namespace Content.Server._White.Other.ChangeThrowForceSystem; public sealed class ChangeThrowForceSystem : EntitySystem { public override void Initialize() { base.Initialize(); SubscribeLocalEvent(HandleThrow); } private void HandleThrow(EntityUid uid, ChangeThrowForceComponent component, ref BeforeThrowEvent args) { args.ThrowStrength = component.ThrowForce; } }