diff --git a/mods/nousersthings.js b/mods/nousersthings.js index 2479903e..4fa18c93 100644 --- a/mods/nousersthings.js +++ b/mods/nousersthings.js @@ -2901,7 +2901,7 @@ elements.specific_ray_emitter = { } }, hoverStat: function(pixel){ - return (pixel.rayElement.toUpperCase() || "unset") + ", " + (pixel.rayStoppedByWalls.toString().toUpperCase() || "unset") + ", " + (pixel.specificRayStart || "unset") + ", " + (pixel.specificRayEnd || "unset") + ", " + (pixel.specificRayAngle || "unset") + return (pixel.rayElement || "unset").toUpperCase() + ", " + (pixel.rayStoppedByWalls || "unset").toString().toUpperCase() + ", " + (pixel.specificRayStart || "unset") + ", " + (pixel.specificRayEnd || "unset") + ", " + (pixel.specificRayAngle || "unset") }, tick: function(pixel){ if (pixelTicks == pixel.start){