diff --git a/files/assets/images/badges/999.webp b/files/assets/images/badges/999.webp deleted file mode 100644 index 376cecdd8..000000000 Binary files a/files/assets/images/badges/999.webp and /dev/null differ diff --git a/files/helpers/cron.py b/files/helpers/cron.py index 6cc119a13..171ea33d3 100644 --- a/files/helpers/cron.py +++ b/files/helpers/cron.py @@ -209,7 +209,7 @@ def _award_timers_task(): _process_timer(User.earlylife, [169], "The earlylife award you received has expired!") _process_timer(User.marsify, [170], "The marsify award you received has expired!") _process_timer(User.rainbow, [171], "The rainbow award you received has expired!") - _process_timer(User.queen, [999], "The queen award you received has expired!", { + _process_timer(User.queen, [285], "The queen award you received has expired!", { User.username: User.prelock_username, User.prelock_username: None, }) diff --git a/files/routes/awards.py b/files/routes/awards.py index 5c48098fd..5c005ea5d 100644 --- a/files/routes/awards.py +++ b/files/routes/awards.py @@ -355,7 +355,7 @@ def award_thing(v, thing_type, id): if author.queen and time.time() < author.queen: author.queen += 86400 else: author.queen = int(time.time()) + 86400 - badge_grant(user=author, badge_id=999) + badge_grant(user=author, badge_id=285) elif kind == "agendaposter": if thing_type == 'post' and thing.sub == 'chudrama' \ diff --git a/seed-db.sql b/seed-db.sql index 4f766436b..50963aaaa 100644 --- a/seed-db.sql +++ b/seed-db.sql @@ -243,7 +243,6 @@ INSERT INTO public.badge_defs VALUES (282, 'Rehab Counselor', 'Awarded for parti INSERT INTO public.badge_defs VALUES (283, 'Summer Fun', 'Awarded for contributing to the Marsey''s Summer Fun event', 1685121838); INSERT INTO public.badge_defs VALUES (284, 'In Memoriam Theodroa', 'When God calls one of His most blessed angels home, the heavens rejoice while we are left behind to weep with the rain.', 1686502188); INSERT INTO public.badge_defs VALUES (285, 'Queen', 'This user SLAYS 💅👠💄', 1687282987); -INSERT INTO public.badge_defs VALUES (999, 'Queen', 'This incel is metamorphosizing', 1686502188); -- Name: badge_defs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - --