1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-26 21:14:19 +00:00

🔧 Fix diobot function name

This commit is contained in:
Steffo 2022-02-22 04:12:36 +01:00 committed by Stefano Pigozzi
parent 6583697405
commit 151bb78fdc

View file

@ -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",
)
"diobot",
)