From 9482760b28bdc85d6202b7a0673a69d1da05306b Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Sun, 14 Oct 2018 18:32:16 +0200
Subject: [PATCH] put the text lower

---
 commands/fun/painting.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commands/fun/painting.js b/commands/fun/painting.js
index bafaf3a7..747bb05f 100644
--- a/commands/fun/painting.js
+++ b/commands/fun/painting.js
@@ -28,7 +28,7 @@ module.exports = class idubbbzCommand extends Command {
         const ctx = canvas.getContext('2d')
         const background = await loadImage(image);
         ctx.drawImage(background, 140, 30, 400, 400);
-        const { body: buffer } = await superagent.get('https://image.noelshack.com/fichiers/2018/41/7/1539534415-untitled.png');
+        const { body: buffer } = await superagent.get('https://image.noelshack.com/fichiers/2018/41/7/1539534719-untitled.png');
         const bg = await loadImage(buffer);
         ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);