From 9e9b7f583f99737d3301efb5206709f2c9dc9fcb Mon Sep 17 00:00:00 2001 From: Jona-K <63449674+Katzenminer@users.noreply.github.com> Date: Thu, 5 Jun 2025 10:46:08 +0200 Subject: [PATCH] Removing The Scream Action From The Action Bar (#1348) * Removed Initilization For The Scream Action * Commetet out code instead of Deleting it outright * Commetet Out The Code Inititzilazing The Scream Action * Update Content.Server/Speech/EntitySystems/VocalSystem.cs * Update Content.Server/Speech/EntitySystems/VocalSystem.cs --------- Co-authored-by: Red <96445749+TheShuEd@users.noreply.github.com> --- Content.Server/Speech/EntitySystems/VocalSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } }