Update debugRework.js

This commit is contained in:
feeshmaster 2023-11-21 17:44:01 -06:00 committed by GitHub
parent f0d988eb54
commit 507ec784e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ function startDebugLive() {
}
function statChange() {
if (live == true) {
output = targetedPixel.element.toUpperCase() + " at x" + targetedPixel.x + ", y" + targetedPixel.y + ", tick" + pixelTicks + `<br>`;
output = targetedPixel.element.toUpperCase() + " at x" + targetedPixel.x + ", y" + targetedPixel.y + ", tick: " + pixelTicks + `<br>`;
for (let i in targetedPixel) {
if (i !== "x" && i !== "y" && i !== "element") {
output += " " + i + ": " + targetedPixel[i] + `<br>`;