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] + `
`;