use flower crowns for queen award
parent
a4071ba6b6
commit
ac83bb7739
|
@ -343,7 +343,7 @@ class User(Base):
|
||||||
user_forced_hats = []
|
user_forced_hats = []
|
||||||
for k, val in forced_hats.items():
|
for k, val in forced_hats.items():
|
||||||
if getattr(self, k) and getattr(self, k) > 1:
|
if getattr(self, k) and getattr(self, k) > 1:
|
||||||
if k == 'chud':
|
if isinstance(val, tuple):
|
||||||
user_forced_hats.append(random.choice(val))
|
user_forced_hats.append(random.choice(val))
|
||||||
else:
|
else:
|
||||||
user_forced_hats.append(val)
|
user_forced_hats.append(val)
|
||||||
|
|
|
@ -940,12 +940,30 @@ forced_hats = {
|
||||||
"earlylife": ("The Merchant", "SHUT IT DOWN, the goys know!"),
|
"earlylife": ("The Merchant", "SHUT IT DOWN, the goys know!"),
|
||||||
"marsify": ("Marsified", "I can't pick my own Marseys, help!"),
|
"marsify": ("Marsified", "I can't pick my own Marseys, help!"),
|
||||||
"is_suspended": ("Behind Bars", "This user is banned and needs to do better!"),
|
"is_suspended": ("Behind Bars", "This user is banned and needs to do better!"),
|
||||||
"queen": ("Emoji Crown (hearts and shooting stars)", "This user is getting in touch with her feminine side 🥰"),
|
"chud": (
|
||||||
"chud": (("Egg_irl", "This user is getting in touch with xir identity!"),
|
("Egg_irl", "This user is getting in touch with xir identity!"),
|
||||||
("Trans Flag", "Just in case you forgot, trans lives matter."),
|
("Trans Flag", "Just in case you forgot, trans lives matter."),
|
||||||
("Trans Flag II", "Your egg is cracked; wear it with pride!"),
|
("Trans Flag II", "Your egg is cracked; wear it with pride!"),
|
||||||
("Pride Flag", "Never forget that this is a primarily gay community. Dude bussy lmao."),
|
("Pride Flag", "Never forget that this is a primarily gay community. Dude bussy lmao."),
|
||||||
("Pride Flag II", "This user is a proud supporter of LGBTQ+ rights."))
|
("Pride Flag II", "This user is a proud supporter of LGBTQ+ rights."),
|
||||||
|
),
|
||||||
|
"queen": (
|
||||||
|
("Flower Crown I", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown II", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown III", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown IV", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown V", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown VI", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown VII", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown VIII", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown IX", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown X", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown XI", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown XII", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown XIII", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Flower Crown XIV", "This user is getting in touch with her feminine side 🥰"),
|
||||||
|
("Emoji Crown (hearts and shooting stars)", "This user is getting in touch with her feminine side 🥰")
|
||||||
|
),
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue