Make PKA require wielding (#16638)

This commit is contained in:
metalgearsloth
2023-06-01 12:27:19 +10:00
committed by GitHub
parent f9df5f761c
commit 6537e683b0
8 changed files with 69 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
using Content.Shared.Wieldable;
using Robust.Shared.GameStates;
namespace Content.Shared.Weapons.Ranged.Components;
@@ -5,7 +6,7 @@ namespace Content.Shared.Weapons.Ranged.Components;
/// <summary>
/// Indicates that this gun requires wielding to be useable.
/// </summary>
[RegisterComponent, NetworkedComponent]
[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem))]
public sealed class GunRequiresWieldComponent : Component
{