From e59bf8acd9199e2ba04bfac04d241d6008340a20 Mon Sep 17 00:00:00 2001 From: Taran Date: Thu, 27 Oct 2022 21:25:47 -0600 Subject: [PATCH] Increases VoiceRange To 10 From 7 (#12254) --- Content.Server/Chat/Systems/ChatSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 4045f24395..81ae2ca70e 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -54,7 +54,7 @@ public sealed partial class ChatSystem : SharedChatSystem [Dependency] private readonly StationSystem _stationSystem = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; - private const int VoiceRange = 7; // how far voice goes in world units + private const int VoiceRange = 10; // how far voice goes in world units private const int WhisperRange = 2; // how far whisper goes in world units private const string DefaultAnnouncementSound = "/Audio/Announcements/announce.ogg";