quick fixy hahahahahahah

This commit is contained in:
JustAGenericUsername 2026-01-29 16:22:42 -05:00
parent fe7164aa9d
commit cf54e086ab
1 changed files with 1 additions and 1 deletions

View File

@ -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){