Skip to content

Commit

Permalink
Show silent filtered words in /filter list
Browse files Browse the repository at this point in the history
  • Loading branch information
SlimShadyIAm committed May 19, 2024
1 parent 7aaf7f3 commit 9d8ed39
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cogs/commands/mod/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ def format_filter_page(_, entries, current_page, all_pages):
embed = discord.Embed(
title=f'Filtered words', color=discord.Color.blurple())
for word in entries:
if word.silent_filter:
embed.add_field(
name=word.word, value=f"🤫 silent filtered"
)
continue

notify_flag = ""
piracy_flag = ""
flags_check = ""
Expand Down

0 comments on commit 9d8ed39

Please sign in to comment.