From f4bcac1eaefc05a197be7289cf6063213da056ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20Olausson=20Holten=C3=A4s?= Date: Sun, 6 Mar 2022 14:26:26 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20error=20titles=20and?= =?UTF-8?q?=20descriptions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/commands/credits/addons/gift.js | 4 ++-- src/commands/credits/addons/take.js | 4 ++-- src/commands/credits/addons/transfer.js | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/commands/credits/addons/gift.js b/src/commands/credits/addons/gift.js index 52b5414..46e2145 100644 --- a/src/commands/credits/addons/gift.js +++ b/src/commands/credits/addons/gift.js @@ -46,8 +46,8 @@ module.exports = async (interaction) => { if (!toUser) { const embed = { - title: 'Set', - description: 'That user has no credits, I can not set credits to the user', + title: 'Gift', + description: 'That user has no credits, I can not gift credits to the user', color: config.colors.error, timestamp: new Date(), footer: { iconURL: config.footer.icon, text: config.footer.text }, diff --git a/src/commands/credits/addons/take.js b/src/commands/credits/addons/take.js index 4f4dae0..e4fce37 100644 --- a/src/commands/credits/addons/take.js +++ b/src/commands/credits/addons/take.js @@ -33,8 +33,8 @@ module.exports = async (interaction) => { if (!toUser) { const embed = { - title: 'Set', - description: 'That user has no credits, I can not set credits to the user', + title: 'Take', + description: 'That user has no credits, I can not take credits from the user', color: config.colors.error, timestamp: new Date(), footer: { iconURL: config.footer.icon, text: config.footer.text }, diff --git a/src/commands/credits/addons/transfer.js b/src/commands/credits/addons/transfer.js index 08cd4c3..c760a1f 100644 --- a/src/commands/credits/addons/transfer.js +++ b/src/commands/credits/addons/transfer.js @@ -47,8 +47,8 @@ module.exports = async (interaction) => { if (!toUser) { const embed = { - title: 'Set', - description: 'That user has no credits, I can not set credits to the user', + title: 'Transfer', + description: 'That user has no credits, I can not transfer credits to the user', color: config.colors.error, timestamp: new Date(), footer: { iconURL: config.footer.icon, text: config.footer.text },