Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bot/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
bot.load_extension("bot.cogs.antispam")
bot.load_extension("bot.cogs.bot")
bot.load_extension("bot.cogs.clean")
bot.load_extension("bot.cogs.cogs")
bot.load_extension("bot.cogs.extensions")
bot.load_extension("bot.cogs.help")

# Only load this in production
Expand Down
7 changes: 4 additions & 3 deletions bot/cogs/alias.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from discord import Colour, Embed, Member, User
from discord.ext.commands import Bot, Cog, Command, Context, clean_content, command, group

from bot.cogs.extensions import Extension
Comment thread
MarkKoz marked this conversation as resolved.
from bot.cogs.watchchannels.watchchannel import proxy_user
from bot.converters import TagNameConverter
from bot.pagination import LinePaginator
Expand Down Expand Up @@ -84,9 +85,9 @@ async def site_rules_alias(self, ctx: Context) -> None:
await self.invoke(ctx, "site rules")

@command(name="reload", hidden=True)
async def cogs_reload_alias(self, ctx: Context, *, cog_name: str) -> None:
"""Alias for invoking <prefix>cogs reload [cog_name]."""
await self.invoke(ctx, "cogs reload", cog_name)
async def extensions_reload_alias(self, ctx: Context, *extensions: Extension) -> None:
"""Alias for invoking <prefix>extensions reload [extensions...]."""
await self.invoke(ctx, "extensions reload", *extensions)

@command(name="defon", hidden=True)
async def defcon_enable_alias(self, ctx: Context) -> None:
Expand Down
298 changes: 0 additions & 298 deletions bot/cogs/cogs.py

This file was deleted.

Loading