diff --git a/ui/shared/status/StatusChatInput.qml b/ui/shared/status/StatusChatInput.qml index 34c3d781b2..4eef874235 100644 --- a/ui/shared/status/StatusChatInput.qml +++ b/ui/shared/status/StatusChatInput.qml @@ -69,11 +69,11 @@ Rectangle { } function interpretMessage(msg) { - if (msg === "/shrug") { - return "¯\\\\\\_(ツ)\\_/¯" + if (msg.startsWith("/shrug")) { + return msg.replace("/shrug", "") + " ¯\\\\\\_(ツ)\\_/¯" } - if (msg === "/tableflip") { - return "(╯°□°)╯︵ ┻━┻" + if (msg.startsWith("/tableflip")) { + return msg.replace("/tableflip", "") + " (╯°□°)╯︵ ┻━┻" } return msg