diff --git a/commands/analyze/has-transparency.js b/commands/analyze/has-transparency.js index 8701390a..7f357a7c 100644 --- a/commands/analyze/has-transparency.js +++ b/commands/analyze/has-transparency.js @@ -8,7 +8,7 @@ module.exports = class HasTransparencyCommand extends Command { super(client, { name: 'has-transparency', aliases: ['has-alpha', 'transparency', 'transparent', 'alpha'], - group: 'meme-gen', + group: 'analyze', memberName: 'has-transparency', description: 'Determines if an image has transparency in it.', throttling: { @@ -30,7 +30,7 @@ module.exports = class HasTransparencyCommand extends Command { try { const { body } = await request.get(image); const data = await loadImage(body); - return msg.say(`This image **${hasAlpha(data) ? 'has' : 'does not have'}** transparency.`); + return msg.reply(`This image **${hasAlpha(data) ? 'has' : 'does not have'}** transparency.`); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); }