forked from rDrama/rDrama
1
0
Fork 0

reorder some variables around

master
Aevann 2023-03-24 18:56:51 +02:00
parent 780d0eb99e
commit e359bc008d
1 changed files with 6 additions and 10 deletions

View File

@ -68,18 +68,14 @@ def award_timers(v, bot=False):
badge = v.has_badge(167)
if v.bite and v.bite < now:
v.bite = None
notif_text = "Your vampire status has ended."
if "Vampire" not in v.old_house:
notif_text += f" You're now back in House {v.old_house.replace(' Founder', '')}!"
v.house = v.old_house
v.old_house = ''
notify_if_not_bot(notif_text)
badge = v.has_badge(168)
if badge: g.db.delete(badge)
if "Vampire" not in v.old_house:
v.house = v.old_house
v.old_house = ''
notify_if_not_bot(f"Your vampire status has ended. You're now back in House {v.old_house.replace(' Founder', '')}!")
if v.earlylife and v.earlylife < now:
v.earlylife = None
notify_if_not_bot("Your earlylife status has expired!")