Skip to content

Commit

Permalink
правки
Browse files Browse the repository at this point in the history
  • Loading branch information
HamletSargsyan committed Jun 5, 2024
1 parent e898bd4 commit 410a8da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

# [3.3.1] - 05.06.2024

### Исправлено
- Исправил баг в команде `/top` из за которого показывалось больше строчек чем надо

## [3.3.0] - 05.06.2024

### Изменено
Expand Down
2 changes: 2 additions & 0 deletions src/base/player.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,8 @@ def get_top(

for index, obj in enumerate(objects, start=1):
mess += f"{index}. {key(obj)} - {value(obj)}\n"
if index == max_index:
break
return mess


Expand Down

0 comments on commit 410a8da

Please sign in to comment.