diff --git a/client/Terminal-00-Multiuser.user.js b/client/Terminal-00-Multiuser.user.js index cc97e75..cc84b66 100644 --- a/client/Terminal-00-Multiuser.user.js +++ b/client/Terminal-00-Multiuser.user.js @@ -93,6 +93,10 @@ if (!window.TE_ACTIVE) { const otherCursors = document.createElement("div"); otherCursors.id = "otherCursors"; document.body.appendChild(otherCursors); + + setInterval(() => { + otherCursors.style = `width:${window.innerWidth}px;height:${document.body.scrollHeight}px`; + }, 1000); const keepAlivePacket = createWriter(Endian.LE, 1).writeByte(MessageType.KeepAlive).toBuffer();