Dav-Git / Dav-Cogs

Dav's cogs for Red-DiscordBot
GNU General Public License v3.0
33 stars 28 forks source link

[Warnings] Use user instead of member parameter #116

Closed killerbite95 closed 8 months ago

killerbite95 commented 8 months ago

In check/check.py and replace the line 63 to solve this.

// Original // await ctx.invoke(ctx.bot.get_command("warnings"), user=member)

// New Line // await ctx.invoke(ctx.bot.get_command("warnings"), member=member.id)