From 7e35461f1b841eea2aba5ac5bb822e3106f2a319 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Tue, 27 May 2025 18:05:06 -0400 Subject: [PATCH] make embeds less huge for neo boxels --- lib.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib.js b/lib.js index c72a0e8..c2646dc 100644 --- a/lib.js +++ b/lib.js @@ -52,9 +52,8 @@ async function splitUp(content) { if (contentJson.pal) { ext = '!neoboxels'; - console.log(Object.keys(contentJson)) - width = contentJson.width * 4; - height = contentJson.height *4; + width = contentJson.width; + height = contentJson.height; } out[i] = { type: 'file', path, ext, content, width, height };