Delete old cog_commands.py
This commit is contained in:
parent
5cda182924
commit
dac66a0974
@ -1,36 +0,0 @@
|
|||||||
from discord.ext import commands
|
|
||||||
|
|
||||||
from global_variables import BOT_COLOR
|
|
||||||
|
|
||||||
|
|
||||||
class ReloadCog(commands.Cog):
|
|
||||||
def __init__(self, bot):
|
|
||||||
self.bot = bot
|
|
||||||
|
|
||||||
@commands.command()
|
|
||||||
@commands.dm_only()
|
|
||||||
@commands.is_owner()
|
|
||||||
async def reloadcog(self, ctx: commands.Context, cog: str = None):
|
|
||||||
if not cog:
|
|
||||||
return await ctx.send("No cog provided.")
|
|
||||||
|
|
||||||
cog = cog.lower()
|
|
||||||
await self.bot.reload_extension(f"cogs.{cog}")
|
|
||||||
|
|
||||||
await ctx.send(f"Cog {cog} has been reloaded")
|
|
||||||
|
|
||||||
@commands.command()
|
|
||||||
@commands.dm_only()
|
|
||||||
@commands.is_owner()
|
|
||||||
async def loadcog(self, ctx: commands.Context, cog: str = None):
|
|
||||||
if not cog:
|
|
||||||
return await ctx.send("No cog provided.")
|
|
||||||
|
|
||||||
cog = cog.lower()
|
|
||||||
await self.bot.load_extension(f"cogs.{cog}")
|
|
||||||
|
|
||||||
await ctx.send(f"Cog {cog} has been loaded")
|
|
||||||
|
|
||||||
|
|
||||||
async def setup(bot):
|
|
||||||
await bot.add_cog(ReloadCog(bot))
|
|
Loading…
x
Reference in New Issue
Block a user