From 23e4408fa8a840b78984c97aa927a120a465fd12 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Mon, 18 May 2020 14:02:14 +0200 Subject: Add /roomnick command --- src/TextInputWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/TextInputWidget.cpp') diff --git a/src/TextInputWidget.cpp b/src/TextInputWidget.cpp index af5c278e..d2359910 100644 --- a/src/TextInputWidget.cpp +++ b/src/TextInputWidget.cpp @@ -576,6 +576,8 @@ TextInputWidget::command(QString command, QString args) sendBanRoomRequest(args.section(' ', 0, 0), args.section(' ', 1, -1)); } else if (command == "unban") { sendUnbanRoomRequest(args.section(' ', 0, 0), args.section(' ', 1, -1)); + } else if (command == "roomnick") { + changeRoomNick(args); } else if (command == "shrug") { sendTextMessage("¯\\_(ツ)_/¯"); } else if (command == "fliptable") { -- cgit 1.5.1