PredaaA 35dfb04066
[Mutes] Add guild ID to mutes data (#4906)
* [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.
2021-04-01 19:01:43 -06:00

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)