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);