This commit is contained in:
Aevann1 2022-01-21 13:14:24 +02:00
parent 35dddec8f9
commit 6954bc75c1
7 changed files with 24 additions and 13 deletions

View file

@ -797,3 +797,10 @@ NOTIFIED_USERS = {
num_banners = len(listdir('files/assets/images/Drama/banners')) + 1
num_sidebar = len(listdir('files/assets/images/Drama/sidebar')) + 1
with open("marsey_count.json", 'r') as f: marsey_count = loads(f.read())
marsey_counted = []
for k, val in marseys.items():
marsey_counted.append((k, val, marsey_count[k]))
marsey_counted = sorted(marsey_counted, key=lambda x: x[2], reverse=True)