diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index 35898addb3..aad5f68952 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -486,7 +486,7 @@ namespace Content.Shared.Cuffs } } - _audio.PlayPvs(handcuffComponent.StartCuffSound, handcuff); + _audio.PlayPredicted(handcuffComponent.StartCuffSound, handcuff, user); } /// @@ -567,7 +567,7 @@ namespace Content.Shared.Cuffs if (attempt.Cancelled) return; - _audio.PlayPvs(cuff.EndUncuffSound, target); + _audio.PlayPredicted(cuff.EndUncuffSound, target, user); cuffable.Container.Remove(cuffsToRemove);