Skip to content

Commit

Permalink
fix(NC): Rename [p]say to [p]echo.
Browse files Browse the repository at this point in the history
In hopes to reduce conflicts with other cogs, such as Crier. Fixes #105.
  • Loading branch information
tmercswims committed Jan 18, 2020
1 parent 841dc64 commit 4345ed3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions nestedcommands/nestedcommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,12 @@ def __init__(self, bot: Red, *args, **kwargs) -> None:

self.__init_before()

@commands.command(name="say")
async def say(self, ctx: commands.Context, *, message: str) -> None:
"""Says what you say."""
@commands.command()
async def echo(self, ctx: commands.Context, *, message: str) -> None:
"""Says what you say. Does no filtering.
Is there an echo in here?
"""

await ctx.send(message)

Expand Down

0 comments on commit 4345ed3

Please sign in to comment.