disable award immunity to new users with alts

pull/211/head
Aevann 2023-10-02 17:03:47 +03:00
parent 1bb8a88b8c
commit de79260774
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ class User(Base):
return False
if self.id in IMMUNE_TO_AWARDS:
return True
if self.new_user:
if self.new_user and not self.alts:
return True
return False