Skip to content

Commit

Permalink
Merge pull request #555 from krkk/add-shrug-text
Browse files Browse the repository at this point in the history
ChatRoomWidget: add text in /shrug
  • Loading branch information
KitsuneRal authored Mar 23, 2019
2 parents e61efd0 + 224b661 commit 6b45c63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/chatroomwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,8 @@ QString ChatRoomWidget::doSendInput()
}
if (command == "shrug") // Peeked at Discord
{
m_currentRoom->postPlainText("¯\\_(ツ)_/¯");
m_currentRoom->postPlainText((argString.isEmpty() ? "" : argString + " ") +
"¯\\_(ツ)_/¯");
return {};
}
if (command == "topic")
Expand Down

0 comments on commit 6b45c63

Please sign in to comment.