remove debug print
This commit is contained in:
parent
c50930bc11
commit
cab2f2d3a1
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue