Add new /insult username command that insults a user with a random insult. Basically append all the text after the `/insult` before the actual insult. #43
Add an optional parameter to the insult handler so that we can target them.
Basically we want to append all the text that is provided to the handler before the replied text:
# When extra text is provided
f'{extra_text}, ets un {insult}'
# Otherwise
f'Ets un {insult}'
Add an optional parameter to the
insult
handler so that we can target them. Basically we want to append all the text that is provided to the handler before the replied text: