ARGH!!
This commit is contained in:
parent
c07a62c343
commit
2885ce2d43
@ -31,16 +31,14 @@ class Recruitment(commands.Cog):
|
|||||||
async def cog_check(self, ctx: commands.Context):
|
async def cog_check(self, ctx: commands.Context):
|
||||||
guild_id = ctx.guild.id
|
guild_id = ctx.guild.id
|
||||||
if guild_id not in self.antispam:
|
if guild_id not in self.antispam:
|
||||||
self.antispam[guild_id] = AntiSpam([(5, 5), (30, 10), (300, 20)])
|
self.antispam[guild_id] = AntiSpam([(timedelta(seconds=5), 5), (timedelta(minutes=1), 10), (timedelta(minutes=5), 20), (timedelta(hours=1), 30), (timedelta(hours=24), 50)])
|
||||||
|
|
||||||
antispam = self.antispam[guild_id]
|
antispam = self.antispam[guild_id]
|
||||||
antispam.update(ctx)
|
if antispam.spammy:
|
||||||
if antispam.spam_count:
|
await ctx.send("Please wait a while before sending your application.")
|
||||||
return False
|
return False
|
||||||
|
antispam.stamp()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
@commands.guild_only()
|
@commands.guild_only()
|
||||||
@checks.admin_or_permissions(manage_guild=True)
|
@checks.admin_or_permissions(manage_guild=True)
|
||||||
@commands.group(name="setapplicationschannel", pass_context=True, no_pm=True)
|
@commands.group(name="setapplicationschannel", pass_context=True, no_pm=True)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user