This commit is contained in:
Robert Miles 2021-06-30 07:53:32 +00:00
commit 76801c0091
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ def on_stats(event):
return
bunc = len(buns)
avg_bunt = average(buns) # *av*era*g*e *bun* *t*ime
stat_out = "You have befriended {:,} bun{}. Your average befriend time is {:,.02f}, and your current score is {:,.02f}.".format(bunc,"s" if bunc!=1 else "",avg_bunt,bungame_data["score_cache"].get(account,0))
stat_out = "You have befriended {:,} bun{}. Your average befriend time is {:,.02f}, and your current score is {:.2e}.".format(bunc,"s" if bunc!=1 else "",avg_bunt,bungame_data["score_cache"].get(account,0))
respond(event,stat_out)
def on_top10(event):