[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.
This commit is contained in:
PredaaA
2021-04-02 03:01:43 +02:00
committed by GitHub
parent fb701d8c72
commit 35dfb04066
2 changed files with 52 additions and 25 deletions

View File

@@ -2,7 +2,6 @@ from redbot.core.bot import Red
from .mutes import Mutes
async def setup(bot: Red):
def setup(bot: Red):
cog = Mutes(bot)
bot.add_cog(cog)
await cog.initialize()