add !keybaord3 command
This commit is contained in:
parent
f62375eaed
commit
0378fc80ef
7
bot.py
7
bot.py
|
|
@ -186,12 +186,17 @@ def pong(match: Match[str]) -> Response:
|
||||||
|
|
||||||
|
|
||||||
_TEXT_COMMANDS = (
|
_TEXT_COMMANDS = (
|
||||||
# this one has to be first so it does not get overridden by !keyboard
|
# these have to be first so it does not get overridden by !keyboard
|
||||||
(
|
(
|
||||||
'!keyboard2',
|
'!keyboard2',
|
||||||
'this is my second mechanical keyboard: '
|
'this is my second mechanical keyboard: '
|
||||||
'https://i.fluffy.cc/CDtRzWX1JZTbqzKswHrZsF7HPX2zfLL1.png',
|
'https://i.fluffy.cc/CDtRzWX1JZTbqzKswHrZsF7HPX2zfLL1.png',
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
'!keyboard3',
|
||||||
|
'this is my stream deck keyboard (cherry mx black silent):'
|
||||||
|
'https://keeb.io/products/bdn9-3x3-9-key-macropad-rotary-encoder-support', # noqa: E501
|
||||||
|
),
|
||||||
# the rest of these are sorted by command
|
# the rest of these are sorted by command
|
||||||
(
|
(
|
||||||
'!discord',
|
'!discord',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue