This commit is contained in:
Dragon Fire
2021-04-19 21:04:10 -04:00
parent 70e6c93642
commit a827805a13
+1 -1
View File
@@ -32,7 +32,7 @@ module.exports = class ColorCommand extends Command {
const name = ntc.name(color);
ctx.fillStyle = color.toLowerCase();
ctx.fillRect(0, 0, 250, 250);
return msg.say(`#${color.toUpperCase()} - ${name[1]}`, {
return msg.say(`${color.toUpperCase()} - ${name[1]}`, {
files: [{ attachment: canvas.toBuffer(), name: 'color.png' }]
});
}