remove income function

This commit is contained in:
SowinskiBraeden committed 2022-07-19 15:10:14 -07:00
1 parent 9216774bde
commit a13219573d
2 files changed
+67 -1

No files matched your search

+6 -1
View File
@@ -76,7 +76,12 @@ module.exports = {
});
}
return interaction.send(`Set <@&${args[0].value}>'s income to $${args[1].value}`);
let successEmbed = new MessageEmbed()
.setTitle('Success')
.setDescription(`Set <@&${args[0].value}>'s income to $${args[1].value}`)
.setColor('GREEN');
return interaction.send({ embeds: [successEmbed] });
},
},
}