From e58ff989d14df5df25586a25ffe494b2b6824c1a Mon Sep 17 00:00:00 2001 From: threememories Date: Thu, 7 May 2026 20:57:45 +0000 Subject: [PATCH] Upload files to "/" --- index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.html b/index.html index 76d34a9..b6b7b6d 100644 --- a/index.html +++ b/index.html @@ -12914,6 +12914,12 @@ Gamestate.updateInfo = function () { let phaseName = this.stage.toUpperCase().replace(" PHASE", ""); let fullText = `${phaseName} PHASE: ${rawText}`; + // --- NEW: INJECT INTO GHOST LOG ON MOBILE --- + if (window.innerWidth <= 950) { + this.logAction(`[ DIRECTIVE ] ${fullText}`, true); + } + // --- END NEW LOGIC --- + // Stop any old typing immediately if (this.typewriterInterval) { clearInterval(this.typewriterInterval);