From 12d74162d7b39247815e3afed382cc2936a8988e Mon Sep 17 00:00:00 2001 From: WubzyGD Date: Tue, 4 Jan 2022 16:38:18 -0700 Subject: [PATCH] fix chest footer --- util/lxp/spawnchest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/lxp/spawnchest.js b/util/lxp/spawnchest.js index da54d7f..38fc7d1 100644 --- a/util/lxp/spawnchest.js +++ b/util/lxp/spawnchest.js @@ -67,12 +67,12 @@ module.exports = async (client, member, channel, prefix) => { let chestEmbed = new Discord.MessageEmbed() .setTitle(`${client.utils.an(rarity.name, true)} Chest has spawned!`) .setDescription(`It has **${amount} Monners<:monners:926736756047495218>**`) - .setFooter({text: `Type \`${prefix}claim\` to claim it!`}) + .setFooter({text: `Type ${prefix}claim to claim it!`}) .setColor(rarity.color) //create the chest message if (spawnChannel === channel) { return channel.send({embeds: [chestEmbed]}) - .then(m => {client.misc.cache.chests.waiting.set(m.channel.id, {amount: amount, rarity: rarity, message: m});}) + .then(m => {client.misc.cache.chests.waiting.set(m.channel.id, {amount: amount, rarity: rarity, message: m});}) //place the chest in waiting to make it claimable .catch(() => {}); } else {