diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-16 22:34:31 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-16 22:34:31 +0200 |
commit | eea33062e3728ba5427da2f98ace69667e2d928b (patch) | |
tree | 65e9b3e7650cf3c45d44beaa445261894c29e1c5 /src | |
parent | Hack to work around layout flickering when adding new timeline items (diff) | |
download | nheko-eea33062e3728ba5427da2f98ace69667e2d928b.tar.xz |
Add some very useful commands
Diffstat (limited to 'src')
-rw-r--r-- | src/TextInputWidget.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/TextInputWidget.cc b/src/TextInputWidget.cc index 737e3cd0..72aa7f97 100644 --- a/src/TextInputWidget.cc +++ b/src/TextInputWidget.cc @@ -344,6 +344,10 @@ TextInputWidget::command(QString command, QString args) sendEmoteMessage(args); } else if (command == "join") { sendJoinRoomRequest(args); + } else if (command == "shrug") { + sendTextMessage("¯\\_(ツ)_/¯"); + } else if (command == "fliptable") { + sendTextMessage("(╯°□°)╯︵ ┻━┻"); } } |