mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
89460c9017
Not sure if [i] [\i] will work as intended but let's try i guess
13 lines
344 B
Python
13 lines
344 B
Python
import royalnet.engineer as engi
|
|
|
|
|
|
@engi.PartialCommand.new(syntax="")
|
|
async def color(*, _sentry: engi.Sentry, _msg: engi.Message, **__):
|
|
"""
|
|
Invia un colore in chat...?
|
|
"""
|
|
|
|
await _msg.send_reply(text="[i]I am sorry, unknown error occured during working with your request, Admin were notified[/i]")
|
|
|
|
|
|
__all__ = ("color",)
|