You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitctx.send(f'This session has been running for **{uptime}**')
210
210
211
211
@client.command(aliases=['commands'])
212
-
asyncdefhelp(ctx):
212
+
asyncdefhelp(ctx: ApplicationContext):
213
213
emb=discord.Embed(title=f'increment.io Commands', description=f'I am a counting bot who looks for numbers and makes sure that the count doesn\'t get messed up. If you want help on commands or want a more organized view, check https://notsniped.github.io/increment.io/commands\n :warning: This bot is still WIP. Some commands/features may not work as expected.\n\n**Prefix:** ```Main Prefix: +```\n**Information:** ```+help, +ping, +stats, +serverstats,+credits```\n**Counting:** ```+setchannel, +numberonly [on/off], +reactions [on/off], +setnumber [number], +resetcount```', color=theme_color)
214
214
awaitctx.send(embed=emb)
215
215
216
216
@client.command(aliases=['pong'])
217
-
asyncdefping(ctx):
217
+
asyncdefping(ctx: ApplicationContext):
218
218
awaitctx.send(f':ping_pong: Pong! In **{round(client.latency*1000)}ms**.')
0 commit comments