From 507ec784e90691f032b47fc5b99400333901e8b6 Mon Sep 17 00:00:00 2001
From: feeshmaster <125420779+feeshmaster@users.noreply.github.com>
Date: Tue, 21 Nov 2023 17:44:01 -0600
Subject: [PATCH] Update debugRework.js
---
mods/debugRework.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mods/debugRework.js b/mods/debugRework.js
index 5350917f..52ea5606 100644
--- a/mods/debugRework.js
+++ b/mods/debugRework.js
@@ -157,7 +157,7 @@ function startDebugLive() {
}
function statChange() {
if (live == true) {
- output = targetedPixel.element.toUpperCase() + " at x" + targetedPixel.x + ", y" + targetedPixel.y + ", tick" + pixelTicks + `
`;
+ output = targetedPixel.element.toUpperCase() + " at x" + targetedPixel.x + ", y" + targetedPixel.y + ", tick: " + pixelTicks + `
`;
for (let i in targetedPixel) {
if (i !== "x" && i !== "y" && i !== "element") {
output += " " + i + ": " + targetedPixel[i] + `
`;