From 1c91cd6bc0ef636b61507d60ae59b46e2ae4fec7 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 19 Sep 2018 20:40:40 +0000 Subject: [PATCH] A bit less transparent --- commands/image-edit/vietnam-flashbacks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.');