Upload files to "/"

This commit is contained in:
threememories 2026-05-07 20:57:45 +00:00
parent 5e9f7a363d
commit e58ff989d1
1 changed files with 6 additions and 0 deletions

View File

@ -12914,6 +12914,12 @@ Gamestate.updateInfo = function () {
let phaseName = this.stage.toUpperCase().replace(" PHASE", ""); let phaseName = this.stage.toUpperCase().replace(" PHASE", "");
let fullText = `${phaseName} PHASE: ${rawText}`; 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 // Stop any old typing immediately
if (this.typewriterInterval) { if (this.typewriterInterval) {
clearInterval(this.typewriterInterval); clearInterval(this.typewriterInterval);