Skip to content

Instantly share code, notes, and snippets.

View Nanofaux's full-sized avatar
🍊
Peachy~

Nanofaux Nanofaux

🍊
Peachy~
View GitHub Profile
@Nanofaux
Nanofaux / Checks.py
Created August 6, 2020 18:19 — forked from Painezor/Checks.py
Built-in Checks for the commands extension of discord py
@commands.guild_only()
# Command cannot be used in private messages.
@commands.is_owner()
# Command can only be used by the bot owner.
@commands.is_nsfw()
# Command can only be used in NSFW channels
@commands.has_role("name")