remove debug print

This commit is contained in:
cloudwithax 2022-10-25 21:33:01 -04:00
parent c50930bc11
commit cab2f2d3a1
1 changed files with 1 additions and 2 deletions

View File

@ -366,8 +366,7 @@ class Player(VoiceProtocol):
# Check if theres no global filters and if the track has any filters # Check if theres no global filters and if the track has any filters
# that need to be applied # that need to be applied
print(f"global filters: {self.filters.has_global}") if track.filters and not self.filters.has_global:
if not self.filters.has_global and track.filters:
# Now apply all filters # Now apply all filters
for filter in track.filters: for filter in track.filters:
await self.add_filter(filter=filter) await self.add_filter(filter=filter)