diff --git a/Content.Server/Guardian/GuardianHostComponent.cs b/Content.Server/Guardian/GuardianHostComponent.cs index dfd108d523..2897606265 100644 --- a/Content.Server/Guardian/GuardianHostComponent.cs +++ b/Content.Server/Guardian/GuardianHostComponent.cs @@ -31,6 +31,7 @@ namespace Content.Server.Guardian Description = "action-description-guardian", Icon = new SpriteSpecifier.Texture(new ResourcePath("Interface/Actions/manifest.png")), UseDelay = TimeSpan.FromSeconds(2), + CheckCanInteract = false, // allow use while stunned, etc. Gets removed on death anyways. Event = new GuardianToggleActionEvent(), }; } diff --git a/Content.Server/Speech/Components/VocalComponent.cs b/Content.Server/Speech/Components/VocalComponent.cs index 634a2aca10..b1ea181d7b 100644 --- a/Content.Server/Speech/Components/VocalComponent.cs +++ b/Content.Server/Speech/Components/VocalComponent.cs @@ -36,6 +36,7 @@ public sealed class VocalComponent : Component Name = "action-name-scream", Description = "AAAAAAAAAAAAAAAAAAAAAAAAA", Event = new ScreamActionEvent(), + CheckCanInteract = false, // system checks a speech related action blocker. }; }