* - tweak: Something. * - tweak: Tweaks. * - tweak: Death to autoklickers. * - tweak: Warop tweak. * - tweak: Neuro tweaks. * - add: Translate animal accents. * - fix: Embeddable projectiles miss corpses. * - tweak: More sniper ammo. * - tweak: Free clothes in uplink. * - tweak: Less speed up from stuff. * - tweak: Ammo counter and toggleable clothing stuff. * - add: More emag stuff. * - tweak: No neuro blunt stamina damage. * - fix: Fix name. * - fix: Fix desc.
12 lines
337 B
C#
12 lines
337 B
C#
using Content.Shared.Tag;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._White.Implants.NeuroControl;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class NeuroStabilizationComponent : Component
|
|
{
|
|
[ValidatePrototypeId<TagPrototype>]
|
|
public const string NeuroStabilizationTag = "NeuroStabilization";
|
|
}
|