mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 03:10:55 +01:00
* Entity<T>, skipping Magazine and ChamberMagazine * missed some * AUGH!! * ballistic examine * dotnet hates me * WHY ARE YOU CALLED THAT!!!! * cheers aada
12 lines
262 B
C#
12 lines
262 B
C#
using Content.Shared.Weapons.Ranged.Components;
|
|
|
|
namespace Content.Shared.Weapons.Ranged.Systems;
|
|
|
|
public partial class SharedGunSystem
|
|
{
|
|
public void SetEnabled(Entity<AutoShootGunComponent> ent, bool status)
|
|
{
|
|
ent.Comp.Enabled = status;
|
|
}
|
|
}
|