diff --git a/echo.py b/echo.py index 51dfdf1..0f6bcd6 100644 --- a/echo.py +++ b/echo.py @@ -26,6 +26,6 @@ class EchoBot(Plugin): await evt.reply(f"Pong! (ping took {self.time_since(evt.timestamp)} to arrive)") @command.new("echo", help="Repeat a message") - @command.argument("message", required=True) + @command.argument("message", pass_raw=True) async def echo_handler(self, evt: MessageEvent, message: str) -> None: await evt.respond(message)