From 151bb78fdcd0cf45aa604f874ba89fbb8de2847c Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 22 Feb 2022 04:12:36 +0100 Subject: [PATCH] :wrench: Fix `diobot` function name --- royalpack/commands/diobot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/royalpack/commands/diobot.py b/royalpack/commands/diobot.py index 25a472a2..0f983403 100644 --- a/royalpack/commands/diobot.py +++ b/royalpack/commands/diobot.py @@ -57,7 +57,7 @@ WHAT = [ @rb.capture_errors @engi.TeleportingConversation -async def phrase(*, _msg: engi.Message, **__): +async def diobot(*, _msg: engi.Message, **__): """ Il bot รจ molto arrabbiato e vuole creare bestemmie complesse! """ @@ -77,5 +77,5 @@ async def phrase(*, _msg: engi.Message, **__): # Objects exported by this module __all__ = ( - "phrase", -) \ No newline at end of file + "diobot", +)