From cab2f2d3a1922a2c7f13e51017c8557cfe0810d2 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Tue, 25 Oct 2022 21:33:01 -0400 Subject: [PATCH] remove debug print --- pomice/player.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pomice/player.py b/pomice/player.py index 53b9248..22db950 100644 --- a/pomice/player.py +++ b/pomice/player.py @@ -366,8 +366,7 @@ class Player(VoiceProtocol): # Check if theres no global filters and if the track has any filters # that need to be applied - print(f"global filters: {self.filters.has_global}") - if not self.filters.has_global and track.filters: + if track.filters and not self.filters.has_global: # Now apply all filters for filter in track.filters: await self.add_filter(filter=filter)