2021-01-12 14:14:19 +00:00
|
|
|
import royalnet.engineer as engi
|
2021-04-30 13:22:58 +00:00
|
|
|
import royalpack.bolts as rb
|
2021-01-12 14:14:19 +00:00
|
|
|
|
|
|
|
|
2021-04-30 13:22:58 +00:00
|
|
|
@rb.capture_errors
|
2021-04-17 02:19:11 +00:00
|
|
|
@engi.TeleportingConversation
|
2021-04-19 03:26:20 +00:00
|
|
|
async def color(*, _msg: engi.Message, **__):
|
2021-01-12 14:14:19 +00:00
|
|
|
"""
|
|
|
|
Invia un colore in chat...?
|
|
|
|
"""
|
2021-04-19 17:39:01 +00:00
|
|
|
|
2021-04-03 16:43:34 +00:00
|
|
|
await _msg.reply(
|
2021-04-20 00:43:48 +00:00
|
|
|
text="\uE011I am sorry, unknown error occured during working with your request, Admin were notified\uE001"
|
2021-01-14 16:42:37 +00:00
|
|
|
)
|
2021-01-12 14:14:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
__all__ = ("color",)
|