From 7c20c269cd1565c3e401d52ecda42ab351ee6090 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Tue, 12 Sep 2023 13:50:17 -0600 Subject: [PATCH] Add some goofy emotes --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 6d0b987..8f2dc88 100755 --- a/index.js +++ b/index.js @@ -55,7 +55,7 @@ tf2.on("systemMessage", (msg) => { console.log(`${colors.yellow("[TF2]")} New System Message: ${msg}`) notif_hook.send({embeds: [ { - description: msg, + description: `<:Messages:1151242960655089744> ${msg}`, color: 0x3498DB } ]}) @@ -65,7 +65,7 @@ tf2.on("itemBroadcast", (msg, username, wasDestruction, defindex) => { console.log(`${colors.yellow("[TF2]")} New Item :$ {msg}`); pan_hook.send({content: wasDestruction?"@everyone":"",embeds: [ { - description: msg, + description: `<:Alert:1151242961485562008> ${msg}`, color: wasDestruction?0xff0000:0xF1C40F } ]}) @@ -75,7 +75,7 @@ tf2.on("displayNotification", (title, body) => { console.log(`${colors.yellow("[TF2]")} New Notif: ${title}: ${body}`) ring_hook.send({embeds: [ { - description: body, + description: `<:Alert:1151242961485562008> ${body}`, color: 0xF1C40F } ]})