Compare commits

..

No commits in common. "a2ab822803e52d1f5bda62826e9c7462677684de" and "9341554040837698d957f71265d09ceca282709f" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -301,7 +301,7 @@ class Events(commands.Cog):
if not checks.freeGamesCheck(after):
return await self.failedChecksCog.freeGames(after)
if before.content and after.content and should_snipe(before):
if should_snipe(before):
self.client.snipe[before.channel.id] = Snipe(before.author.id, before.channel.id, before.guild.id, Action.Edit,
before.content, after.content)

View File

@ -11,7 +11,6 @@ if __name__ == "__main__":
# Configure intents (1.5.0)
intents = discord.Intents.default()
intents.members = True
intents.message_content = True
client = Didier(command_prefix=get_prefix, case_insensitive=True, intents=intents, activity=activity, status=status)
client.run(TOKEN)