diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 3a8f881b6d..f38d10a6ca 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -82,9 +82,7 @@ public sealed partial class ChatSystem : SharedChatSystem private bool _deadLoocEnabled; private bool _critLoocEnabled; private readonly bool _adminLoocEnabled = true; - //Amour Edit - private readonly Dictionary _loocCooldowns = new(); - //Amour Edit + public override void Initialize() { @@ -736,15 +734,6 @@ public sealed partial class ChatSystem : SharedChatSystem if (!_critLoocEnabled && _mobStateSystem.IsCritical(source)) return; - //Amour EDIT - if (_loocCooldowns.TryGetValue(source, out var lastLoocTime) && DateTime.UtcNow - lastLoocTime < TimeSpan.FromSeconds(60)) //LOOC Cooldowns - { - return; - } - - _loocCooldowns[source] = DateTime.UtcNow; - //Amour Edit - var wrappedMessage = Loc.GetString("chat-manager-entity-looc-wrap-message", ("entityName", name), ("message", FormattedMessage.EscapeText(message)));