diff options
-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}); |