BREAKING!!!! feat: discord.py 2.0 compatibility
This commit is contained in:
parent
7148bd18b1
commit
64e075ccde
9 changed files with 18 additions and 18 deletions
|
@ -1,4 +1,4 @@
|
|||
from .exportchannels import ExportChannels
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(ExportChannels(bot))
|
||||
async def setup(bot):
|
||||
await bot.add_cog(ExportChannels(bot))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from .galaxy import Galaxy
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(Galaxy(bot))
|
||||
async def setup(bot):
|
||||
await bot.add_cog(Galaxy(bot))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from .info import Info
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(Info(bot))
|
||||
async def setup(bot):
|
||||
await bot.add_cog(Info(bot))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from .musicdownloader import MusicDownloader
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(MusicDownloader(bot))
|
||||
async def setup(bot):
|
||||
await bot.add_cog(MusicDownloader(bot))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from .podcast import Podcast
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(Podcast(bot))
|
||||
async def setup(bot):
|
||||
await bot.add_cog(Podcast(bot))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from .shortmute import Shortmute
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(Shortmute(bot))
|
||||
async def setup(bot):
|
||||
await bot.add_cog(Shortmute(bot))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from .suggestions import Suggestions
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(Suggestions(bot))
|
||||
async def setup(bot):
|
||||
await bot.add_cog(Suggestions(bot))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from .sugoncredit import SugonCredit
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(SugonCredit(bot))
|
||||
async def setup(bot):
|
||||
await bot.add_cog(SugonCredit(bot))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from .worldzero import WorldZero
|
||||
|
||||
|
||||
def setup(bot):
|
||||
bot.add_cog(WorldZero(bot))
|
||||
async def setup(bot):
|
||||
await bot.add_cog(WorldZero(bot))
|
||||
|
|
Loading…
Reference in a new issue