From 6f7da0efd36958f11e752a010f216763971b730f Mon Sep 17 00:00:00 2001 From: Metroid_Skittles Date: Fri, 13 Feb 2026 14:17:04 +0100 Subject: [PATCH] Update torchlight_changes_unloze/torchlight3/Torchlight/AudioManager.py --- .../torchlight3/Torchlight/AudioManager.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/torchlight_changes_unloze/torchlight3/Torchlight/AudioManager.py b/torchlight_changes_unloze/torchlight3/Torchlight/AudioManager.py index f81b310..5db4016 100755 --- a/torchlight_changes_unloze/torchlight3/Torchlight/AudioManager.py +++ b/torchlight_changes_unloze/torchlight3/Torchlight/AudioManager.py @@ -272,12 +272,9 @@ class AudioManager(): return True def Stop(self, player, extra): - ExtraFilter = extra.strip().lower() if isinstance(extra, str) else "" Result = {"matched": 0, "stopped": 0, "pending": 0} for AudioClip in self.AudioClips[:]: - if ExtraFilter and ExtraFilter not in AudioClip.Player.Name.lower(): - continue Result["matched"] += 1 AudioClip.Stop()