fix dict oopsie I did when adding house awards

remotes/1693045480750635534/spooky-22
Aevann1 2022-08-30 07:06:59 +02:00
parent a5554e75b7
commit 8229425598
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ def shop(v):
AWARDS = deepcopy(AWARDS2)
if v.house:
AWARDS[v.house] = HOUSE_AWARDS[v.house]
AWARDS[v.house] = deepcopy(HOUSE_AWARDS[v.house])
for val in AWARDS.values(): val["owned"] = 0