Upload files to "/"
This commit is contained in:
parent
5e9f7a363d
commit
e58ff989d1
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue