diff --git a/Content.Server/Speech/EntitySystems/StutteringSystem.cs b/Content.Server/Speech/EntitySystems/StutteringSystem.cs index 48e3df69a9..a6efe37e98 100644 --- a/Content.Server/Speech/EntitySystems/StutteringSystem.cs +++ b/Content.Server/Speech/EntitySystems/StutteringSystem.cs @@ -33,10 +33,7 @@ namespace Content.Server.Speech.EntitySystems if (!Resolve(uid, ref status, false)) return; - if (!_statusEffectsSystem.HasStatusEffect(uid, StutterKey, status)) - _statusEffectsSystem.TryAddStatusEffect(uid, StutterKey, time, refresh, status, alerts); - else - _statusEffectsSystem.TryAddTime(uid, StutterKey, time, status); + _statusEffectsSystem.TryAddStatusEffect(uid, StutterKey, time, refresh, status, alerts); } private void OnAccent(EntityUid uid, StutteringAccentComponent component, AccentGetEvent args)