Skip to content

Commit

Permalink
Merge pull request #150 from GamerNoTitle/dev
Browse files Browse the repository at this point in the history
Dev merge: Fix misssing VCT x FUT Classic pic
  • Loading branch information
GamerNoTitle authored Apr 5, 2024
2 parents 5859e3c + 4a3680c commit 3a6f80b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified db/data.db
Binary file not shown.
4 changes: 2 additions & 2 deletions utils/Register.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def library(app: Flask, request: Request, lang):
print(uuid, skin, data)
levels = data['levels'] # Skin Levels
chromas = data['chromas'] # Skin Chromas
base_img = data['levels'][0]['displayIcon']
base_img = data['displayIcon']
name = skin
tier = data['contentTierUuid']
tier_img = tier_dict.get(tier).get('img')
Expand Down Expand Up @@ -446,7 +446,7 @@ def inventory(app: Flask, request: Request, lang):
continue
levels = data['levels'] # Skin Levels
chromas = data['chromas'] # Skin Chromas
base_img = data['levels'][0]['displayIcon']
base_img = data['displayIcon']
tier = data['contentTierUuid']
tier_img = tier_dict.get(tier).get('img')
for level in levels:
Expand Down

0 comments on commit 3a6f80b

Please sign in to comment.