From 4319464dbbfdf0e51fad76bf5eb0b9a15fd3f792 Mon Sep 17 00:00:00 2001 From: gc <30398469+gc@users.noreply.github.com> Date: Sun, 15 Oct 2023 02:24:10 +1100 Subject: [PATCH] Use plain string for nex loot --- src/tasks/minions/nexActivity.ts | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/tasks/minions/nexActivity.ts b/src/tasks/minions/nexActivity.ts index 6b7e46df47..3e9399e7d4 100644 --- a/src/tasks/minions/nexActivity.ts +++ b/src/tasks/minions/nexActivity.ts @@ -1,4 +1,4 @@ -import { EmbedBuilder, userMention } from '@discordjs/builders'; +import { userMention } from '@discordjs/builders'; import { formatOrdinal } from '@oldschoolgg/toolkit'; import { NEX_ID } from '../../lib/constants'; @@ -46,19 +46,15 @@ export const nexTask: MinionTask = { }); await updateBankSetting('nex_loot', loot.totalLoot()); - const embed = new EmbedBuilder().setThumbnail( - 'https://cdn.discordapp.com/attachments/342983479501389826/951730848426786846/Nex.webp' - ).setDescription(` -${loot.formatLoot()}`); - handleTripFinish( allMUsers[0], channelID, { content: `${allMention} Your team finished killing ${quantity}x Nex.${ wipedKill ? ` Your team wiped on the ${formatOrdinal(wipedKill)} kill.` : '' - }`, - embeds: [embed] + } + +${loot.formatLoot()}` }, undefined, data,