fish-station/Content.Shared/Administration/Systems/AdminGunSystem.cs
Pok ae55204f9f
Move some admin components to shared (#41677)
* AdminSystem-move-to-shared

* review
2025-12-02 19:39:21 +00:00

17 lines
501 B
C#

using Content.Shared.Administration.Components;
using Content.Shared.Weapons.Ranged.Events;
namespace Content.Shared.Administration.Systems;
public sealed class AdminGunSystem : EntitySystem
{
public override void Initialize()
{
SubscribeLocalEvent<AdminMinigunComponent, GunRefreshModifiersEvent>(OnGunRefreshModifiers);
}
private void OnGunRefreshModifiers(Entity<AdminMinigunComponent> ent, ref GunRefreshModifiersEvent args)
{
args.FireRate = 15;
}
}