mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
* [Mutes] Add guild ID to mutes data. * Actually make the whole thing works. * config version as integer, and init task no longer in setup * oops * Fix cog_disabled_in_guild check. * Add Trusty's requested changes.
8 lines
122 B
Python
8 lines
122 B
Python
from redbot.core.bot import Red
|
|
from .mutes import Mutes
|
|
|
|
|
|
def setup(bot: Red):
|
|
cog = Mutes(bot)
|
|
bot.add_cog(cog)
|