forked from MarseyWorld/MarseyWorld
dont allow autojanny, lpb, zozbot to get coins so they dont dominate the DC leaderboard
parent
a4bfaf5a28
commit
3d916cef06
|
@ -191,6 +191,9 @@ class User(Base):
|
|||
return f"<{self.__class__.__name__}(id={self.id}, username={self.username})>"
|
||||
|
||||
def pay_account(self, currency, amount):
|
||||
if self.id in {AUTOJANNY_ID, LONGPOSTBOT_ID, ZOZBOT_ID}:
|
||||
return
|
||||
|
||||
if SITE == 'watchpeopledie.tv' and self.id == 5222:
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in New Issue