Skip to content

Commit 7530627

Browse files
committed
Show current num instead of next num in on_ready()
1 parent ffaae79 commit 7530627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ async def on_ready(self) -> None:
132132
emb.description += (f'\n\n:fire: Let\'s beat the high score of {self._config.high_score}! '
133133
f':muscle:\n')
134134

135-
emb.add_field(name='NEXT number', value=f'{self._config.current_count + 1}', inline=True)
135+
emb.add_field(name='CURRENT number', value=f'{self._config.current_count}', inline=True)
136136

137137
if self._config.current_member_id:
138138

0 commit comments

Comments
 (0)