remotes/1693045480750635534/spooky-22
Aevann1 2021-07-23 17:27:21 +02:00
parent e0406ee6eb
commit 02053d2b88
1 changed files with 2 additions and 2 deletions

View File

@ -66,10 +66,10 @@ def settings_profile_post(v):
if request.values.get("animatedname", v.animatedname) != v.animatedname:
if v.animatedname == False:
users1, users2 = leaderboard()
users1 = leaderboard()
print(users1)
print(v)
if v not in users1 and v not in users2: return jsonify({"error": "You must be in the leaderboard to apply animated name!"}), 403
if v not in users1: return jsonify({"error": "You must be in the top 25 leaderboard to apply animated name!"}), 403
updated = True
v.animatedname = request.values.get("animatedname", None) == 'true'