From bbde4e8f3bcd52eb00a5529305e8f7d1be2d4bc4 Mon Sep 17 00:00:00 2001 From: JustAGenericUsername <92590792+JustAGenericUsername@users.noreply.github.com> Date: Thu, 29 Jan 2026 16:29:39 -0500 Subject: [PATCH] colors --- mods/nousersthings.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mods/nousersthings.js b/mods/nousersthings.js index 4fa18c93..3596c831 100644 --- a/mods/nousersthings.js +++ b/mods/nousersthings.js @@ -2794,6 +2794,9 @@ elements.ray_emitter = { pixelMap[lx][ly].rColor = pixel.color pixelMap[lx][ly].color = pixel.color } + if (["pointer", "flash", "explosion"].includes(pixel.rayElement)){ + pixelMap[lx][ly].color = pixel.color + } } else if (!isEmpty(lx, ly, true)){ if (pixelMap[lx][ly].element != pixel.rayElement && pixel.rayStoppedByWalls){ break; @@ -2973,6 +2976,9 @@ elements.specific_ray_emitter = { pixelMap[lx][ly].life = pixel.life pixelMap[lx][ly].maxLife = pixel.life } + if (["pointer", "flash", "explosion"].includes(pixel.rayElement)){ + pixelMap[lx][ly].color = pixel.color + } } else if (!isEmpty(lx, ly, true)){ if ((pixelMap[lx][ly].element != pixel.rayElement && pixel.rayStoppedByWalls) || pixelMap[lx][ly].element == pixel.stopAtElement){ break;