Revert "stop chud and queen hats from being much more likely"

This reverts commit c2d82ef02c.
master
Aevann 2024-04-26 23:37:11 +03:00
parent f8691df4e3
commit ae7a4ffa7c
2 changed files with 28 additions and 3 deletions

View File

@ -392,7 +392,10 @@ class User(Base):
user_forced_hats = []
for k, val in forced_hats.items():
if getattr(self, k) and getattr(self, k) > 1:
user_forced_hats.append(val)
if isinstance(val[0], tuple):
user_forced_hats.append(random.choice(val))
else:
user_forced_hats.append(val)
if user_forced_hats: return random.choice(user_forced_hats)
else: return None

View File

@ -986,8 +986,30 @@ forced_hats = {
"earlylife": ("The Merchant", "SHUT IT DOWN, the goys know!"),
"marsify": ("Marsified", "I can't pick my own Marseys, help!"),
"is_banned": ("Behind Bars", "This user is banned and needs to do better!"),
"chud": ("Egg_irl", "This user is getting in touch with xir identity!"),
"queen": ("Flower Crown I", "This user is getting in touch with her feminine side 🥰"),
"chud": (
("Egg_irl", "This user is getting in touch with xir identity!"),
("Trans Flag", "Just in case you forgot, trans lives matter."),
("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 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 🥰")
),
}