diff options
author | Manuel Herrmann <0@0x17.de> | 2019-10-12 01:11:13 +0200 |
---|---|---|
committer | Manuel Herrmann <0@0x17.de> | 2019-10-12 01:11:13 +0200 |
commit | 769b856d1c122c7cfd7cb2071a14448ad36a68fc (patch) | |
tree | 8e02a7bdfc73572365530715c3eca24275f01cba /server/src | |
parent | Outgoing Hook Fix + Package Changes (diff) | |
download | hackchat-769b856d1c122c7cfd7cb2071a14448ad36a68fc.tar.gz hackchat-769b856d1c122c7cfd7cb2071a14448ad36a68fc.zip |
add trip to emotes (/me)
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/commands/core/emote.js | 3 |
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}); |