aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorManuel Herrmann <0@0x17.de>2019-10-12 01:11:13 +0200
committerManuel Herrmann <0@0x17.de>2019-10-12 01:11:13 +0200
commit769b856d1c122c7cfd7cb2071a14448ad36a68fc (patch)
tree8e02a7bdfc73572365530715c3eca24275f01cba /server
parentOutgoing Hook Fix + Package Changes (diff)
downloadhackchat-769b856d1c122c7cfd7cb2071a14448ad36a68fc.tar.gz
hackchat-769b856d1c122c7cfd7cb2071a14448ad36a68fc.zip
add trip to emotes (/me)
Diffstat (limited to 'server')
-rw-r--r--server/src/commands/core/emote.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/src/commands/core/emote.js b/server/src/commands/core/emote.js
index f51f854..b0203cc 100644
--- a/server/src/commands/core/emote.js
+++ b/server/src/commands/core/emote.js
@@ -42,6 +42,9 @@ exports.run = async (core, server, socket, payload) => {
nick: socket.nick,
text: `@${socket.nick} ${text}`
};
+ if (socket.trip) {
+ newPayload.trip = socket.trip;
+ }
// broadcast to channel peers
server.broadcast( newPayload, { channel: socket.channel});