Games-Gamers / FamBot

FAM
3 stars 0 forks source link

Reset member experience on rank up #30

Closed WikiWikiWasp closed 2 years ago

WikiWikiWasp commented 2 years ago

Description

Previously, a member ranking up would keep their current accumulated experience from the previous ranks. This would throw off the experience bar percentage as it was carrying over that experience into the progress towards the next rank up.

This fix resets the member's experience total to 0 at each rank up.

Solution

Add

users[f'{user.id}']['experience'] = 0

to end offam_up() method.

Notes

Other changes:

WikiWikiWasp commented 2 years ago

@mulchbutler pushed requested changes