diff --git a/commands/image-edit/vietnam-flashbacks.js b/commands/image-edit/vietnam-flashbacks.js index 0b6f510e..f1369793 100644 --- a/commands/image-edit/vietnam-flashbacks.js +++ b/commands/image-edit/vietnam-flashbacks.js @@ -37,7 +37,7 @@ module.exports = class VietnamFlashbacksCommand extends Command { const ratio = base.width / base.height; const width = Math.round(data.height * ratio); ctx.drawImage(base, (data.width / 2) - (width / 2), 0, width, data.height); - ctx.globalAlpha = 0.5; + ctx.globalAlpha = 0.75; ctx.drawImage(data, 0, 0); const attachment = canvas.toBuffer(); if (Buffer.byteLength(attachment) > 8e+6) return msg.reply('Resulting image was above 8 MB.');