1
0
Fork 0

wacca: fix tabbing error in util_put_items

This commit is contained in:
Hay1tsme 2023-06-24 15:09:38 -04:00
parent 154ccbdae5
commit 402e753469
1 changed files with 11 additions and 11 deletions

View File

@ -1074,17 +1074,17 @@ class WaccaBase:
old_score = self.data.score.get_best_score(
user_id, item.itemId, item.quantity
)
if not old_score:
self.data.score.put_best_score(
user_id,
item.itemId,
item.quantity,
0,
[0] * 5,
[0] * 13,
0,
0,
)
if not old_score:
self.data.score.put_best_score(
user_id,
item.itemId,
item.quantity,
0,
[0] * 5,
[0] * 13,
0,
0,
)
if item.quantity == 0:
item.quantity = WaccaConstants.Difficulty.HARD.value