Rename 'shit emojis.json' for sanity.

master
Snakes 2022-06-02 05:15:41 -04:00
parent f799612b66
commit df3127785a
1 changed files with 2 additions and 2 deletions

View File

@ -43,12 +43,12 @@ def marsey_list():
} for emoji, author in g.db.query(Marsey, User.username).join(User, User.id==Marsey.author_id).order_by(Marsey.count.desc())]
# Stastic shit
shit = open("files/assets/shit emojis.json", "r", encoding="utf-8")
shit = open("files/assets/emojis.json", "r", encoding="utf-8")
emojis = emojis + json.load(shit)
shit.close()
if SITE_NAME == 'Cringetopia':
shit = open("files/assets/shit emojis.cringetopia.json", "r", encoding="utf-8")
shit = open("files/assets/emojis.cringetopia.json", "r", encoding="utf-8")
emojis = emojis + json.load(shit)
shit.close()