From 9b29a6a719b3058512245f213523b03c55b90a19 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 28 Feb 2021 09:19:08 -0500 Subject: [PATCH] Fix --- commands/edit-image/frame.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image/frame.js b/commands/edit-image/frame.js index 6cf00f6a..6d8e7a52 100644 --- a/commands/edit-image/frame.js +++ b/commands/edit-image/frame.js @@ -46,7 +46,7 @@ module.exports = class FrameCommand extends Command { async run(msg, { frame, image }) { try { - const base = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'frames', frame.file)); + const base = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'frame', frame.file)); const { body } = await request.get(image); const data = await loadImage(body); let canvas;