From 6e778d9425cf071755b4dc975260d933931f4a53 Mon Sep 17 00:00:00 2001 From: JustAGenericUsername <92590792+JustAGenericUsername@users.noreply.github.com> Date: Sat, 15 Jun 2024 22:49:53 -0400 Subject: [PATCH] d --- mods/nousersthings.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mods/nousersthings.js b/mods/nousersthings.js index 9f4ddde6..2d3c2922 100644 --- a/mods/nousersthings.js +++ b/mods/nousersthings.js @@ -2842,7 +2842,7 @@ elements.specific_ray_emitter = { if (!rayans6) { return } stopAtElement = mostSimilarElement(rayans6) let rayans7 - if (rayans == "ray"){ rayans7 = prompt("How long should the ray stay on screen in ticks?", (rayLife||10));} + if (rayans == "ray"){ rayans7 = prompt("How long should the ray stay on screen in ticks?", (rayLife||10)); if (!rayans7) { return } if (isNaN(parseFloat(rayans7))){ rayLife = 10 @@ -2851,6 +2851,7 @@ elements.specific_ray_emitter = { } var rayans8 = prompt("Would you like rainbow mode to be enabled? Type yes or no.", (rainbowMode||"no")); if (rayans8 == "yes"){rainbowMode = true} else {rainbowMode = false} + } }, hoverStat: function(pixel){ return (pixel.rayElement.toUpperCase() || "unset") + ", " + (pixel.rayStoppedByWalls.toString().toUpperCase() || "unset") + ", " + (pixel.specificRayStart || "unset") + ", " + (pixel.specificRayEnd || "unset") + ", " + (pixel.specificRayAngle || "unset")