From dbd6704fefd2f36c5cad66de0dbf5cfea18b65ec Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Tue, 7 Sep 2021 08:06:39 +0200 Subject: [PATCH] Remove unnecessary attenuation set. Guess I'm fixing content after all. --- Content.Client/Kitchen/EntitySystems/MicrowaveSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Client/Kitchen/EntitySystems/MicrowaveSystem.cs index 6a18a0feac..459ba8f5a1 100644 --- a/Content.Client/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Client/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -13,7 +13,7 @@ namespace Content.Client.Kitchen.EntitySystems StopSoundLoop(microwave); microwave.PlayingStream = SoundSystem.Play(Filter.Local(), microwave.LoopingSound.GetSound(), microwave.Owner, - AudioParams.Default.WithAttenuation(1).WithMaxDistance(5).WithLoop(true)); + AudioParams.Default.WithMaxDistance(5).WithLoop(true)); } public void StopSoundLoop(MicrowaveComponent microwave)