From 03d42584ffb481ef54cd2f439cdf69d981f0e5ed Mon Sep 17 00:00:00 2001 From: Visne <39844191+Visne@users.noreply.github.com> Date: Wed, 1 Feb 2023 03:34:29 +0100 Subject: [PATCH] Make Wilhelm scream much more rare (#13823) --- Content.Server/Speech/Components/VocalComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Speech/Components/VocalComponent.cs b/Content.Server/Speech/Components/VocalComponent.cs index c1b70d9b3e..2c7e4b9daa 100644 --- a/Content.Server/Speech/Components/VocalComponent.cs +++ b/Content.Server/Speech/Components/VocalComponent.cs @@ -31,7 +31,7 @@ public sealed class VocalComponent : Component public SoundSpecifier Wilhelm = new SoundPathSpecifier("/Audio/Voice/Human/wilhelm_scream.ogg"); [DataField("wilhelmProbability")] - public float WilhelmProbability = 0.01f; + public float WilhelmProbability = 0.002f; [DataField("screamActionId", customTypeSerializer: typeof(PrototypeIdSerializer))] public string ScreamActionId = "Scream";