diff --git a/Content.Server/Speech/EntitySystems/VocalSystem.cs b/Content.Server/Speech/EntitySystems/VocalSystem.cs index 14fac0bab8..f86f8fc731 100644 --- a/Content.Server/Speech/EntitySystems/VocalSystem.cs +++ b/Content.Server/Speech/EntitySystems/VocalSystem.cs @@ -34,7 +34,7 @@ public sealed class VocalSystem : EntitySystem private void OnMapInit(EntityUid uid, VocalComponent component, MapInitEvent args) { // try to add scream action when vocal comp added - _actions.AddAction(uid, ref component.ScreamActionEntity, component.ScreamAction); + //_actions.AddAction(uid, ref component.ScreamActionEntity, component.ScreamAction); //CP14 Remove The Scream Action from the Action bar LoadSounds(uid, component); } @@ -43,7 +43,7 @@ public sealed class VocalSystem : EntitySystem // remove scream action when component removed if (component.ScreamActionEntity != null) { - _actions.RemoveAction(uid, component.ScreamActionEntity); + //_actions.RemoveAction(uid, component.ScreamActionEntity); //CP14 Remove The Scream Action from the Action bar } }