From 3b9ef0a29ccb08fd11ab8966fa9b3f25bd48de2b Mon Sep 17 00:00:00 2001 From: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> Date: Sun, 10 Mar 2024 00:11:11 -0800 Subject: [PATCH] Remove the Scream Action (#57) # Changelog :cl: - remove: I have a mouth but must not scream (removed the scream action in favor of emotes) --- Content.Server/Speech/EntitySystems/VocalSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Speech/EntitySystems/VocalSystem.cs b/Content.Server/Speech/EntitySystems/VocalSystem.cs index aedcbbd099..9ce12bed95 100644 --- a/Content.Server/Speech/EntitySystems/VocalSystem.cs +++ b/Content.Server/Speech/EntitySystems/VocalSystem.cs @@ -33,7 +33,7 @@ public override void Initialize() 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); // Parkstation-RemoveScreamAction LoadSounds(uid, component); }