[scripts/copy-emote] Removed requirement of 'safe'

This commit is contained in:
Keanu Timmermans 2021-01-02 18:39:31 +01:00
parent ab7320297f
commit 5e2ea81830
Signed by: keanucode
GPG Key ID: A7431C0D513CA93B
1 changed files with 3 additions and 1 deletions

View File

@ -53,7 +53,9 @@ def emote_downloader_and_iterator():
assert emote_registry_data["version"] == 1
emotes = [emote for emote in emote_registry_data["list"] if emote["safe"]]
emotes = [emote for emote in emote_registry_data["list"]
# if emote["safe"]
]
for emote in emotes:
yield "{emote[ref]} [{emote[guild_name]}]".format(emote=emote)