Merge branch 'frost' of https://github.com/Aevann1/Drama into frost

master
Aevann1 2022-07-03 04:00:32 +02:00
commit 32a35c7066
2 changed files with 3 additions and 1 deletions

View File

@ -296,6 +296,7 @@ def award_thing(v, thing_type, id):
badge_grant(user=author, badge_id=128)
elif kind == "checkmark":
author.verified = "Verified"
badge_grant(user=author, badge_id=150)
if author.received_award_count: author.received_award_count += 1
else: author.received_award_count = 1

View File

@ -2256,6 +2256,7 @@ COPY public.badge_defs (id, name, description) FROM stdin;
148 Blackpilled Proud incel ally.
149 Thin This user has verified that they are calorically disciplined.
139 Auspicious Incident This user was fired from a volunteer position
150 Verified Bought a Blue Checkmark.
4 White Hat Discreetly reported an exploit
1 Alpha User Joined during open alpha
2 Verified Email Verified Email
@ -2361,7 +2362,7 @@ COPY public.badge_defs (id, name, description) FROM stdin;
-- Name: badge_defs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--
SELECT pg_catalog.setval('public.badge_defs_id_seq', 149, true);
SELECT pg_catalog.setval('public.badge_defs_id_seq', 150, true);
--