We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9854032 commit 5a961d4Copy full SHA for 5a961d4
main.py
@@ -272,11 +272,11 @@ async def reactions(ctx, setting:str):
272
273
@client.command(aliases=['setnum'])
274
async def setnumber(ctx, arg1:int):
275
- if arg1 < 1: raise(discord.ext.commands.BadArgument)
276
- else:
277
- count[str(ctx.channel.id)] = arg1
278
- savedata()
279
- await ctx.reply(f':white_check_mark: Count set to `{count[str(ctx.channel.id)]}`')
+ if arg1 < 1: raise(discord.ext.commands.BadArgument)
+ else:
+ count[str(ctx.channel.id)] = arg1
+ savedata()
+ await ctx.reply(f':white_check_mark: Count set to `{count[str(ctx.channel.id)]}`')
280
281
@client.command(aliases=['resetnumber', 'reset', 'resetnum'])
282
async def resetcount(ctx):
0 commit comments