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 },