Skip to content

Commit

Permalink
Fixed an error in daily gexp where total gexp amount was doubled
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinTrinh1227 committed Jan 22, 2024
1 parent 27a881e commit 78897b2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions listeners/guild_daily_gexp.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,6 @@ async def dailygpoints(self):

self.total_points = 0

for member in member_data:
#print(member['uuid'], member['expHistory'][yesterday_date])
self.total_points += member['expHistory'][yesterday_date]

for member in member_data:
#print(member['uuid'], member['expHistory'][yesterday_date])
self.total_points += member['expHistory'][yesterday_date]
Expand Down

0 comments on commit 78897b2

Please sign in to comment.