Add the tableflip slashcommand

Signed-off-by: Emmanouil Kampitakis <info+github@kampitakis.de>
This commit is contained in:
Emmanouil Kampitakis 2020-12-10 12:19:13 +01:00 committed by Emmanouil Kampitakis
parent 6726b731e4
commit 98a1b7a2d8

View file

@ -166,6 +166,19 @@ export const Commands = [
},
category: CommandCategories.messages,
}),
new Command({
command: 'tableflip',
args: '<message>',
description: _td('Prepends (╯°□°)╯︵ ┻━┻ to a plain-text message'),
runFn: function(roomId, args) {
let message = '(╯°□°)╯︵ ┻━┻';
if (args) {
message = message + ' ' + args;
}
return success(MatrixClientPeg.get().sendTextMessage(roomId, message));
},
category: CommandCategories.messages,
}),
new Command({
command: 'lenny',
args: '<message>',