diff --git a/src/seqta/utils/AboutMinecraftServer.ts b/src/seqta/utils/AboutMinecraftServer.ts index b4a3fce5..d5fdea95 100644 --- a/src/seqta/utils/AboutMinecraftServer.ts +++ b/src/seqta/utils/AboutMinecraftServer.ts @@ -21,7 +21,6 @@ export async function DeleteWhatsNew() { } export function OpenMinecraftServerPopup() { - if (!document.querySelector('link[href*="minecraftia"]')) { const fontLink = document.createElement("link"); fontLink.href = "https://fonts.cdnfonts.com/css/minecraftia"; @@ -48,7 +47,8 @@ export function OpenMinecraftServerPopup() { imagecont.classList.add("whatsnewImgContainer"); let img = document.createElement("img"); - img.src = "https://raw.githubusercontent.com/BetterSEQTA/BetterSEQTA-Plus/main/src/resources/server-image.png"; + img.src = + "https://raw.githubusercontent.com/BetterSEQTA/BetterSEQTA-Plus/main/src/resources/server-image.png"; img.classList.add("whatsnewImg"); imagecont.appendChild(img); @@ -71,21 +71,37 @@ export function OpenMinecraftServerPopup() {
  • The End dimension will be enabled during an upcoming live event
  • -

    - mc.betterseqta.org -

    +

    + mc.betterseqta.org +

    +

    + Version: 1.21.4 +

    `).firstChild; @@ -121,7 +137,13 @@ export function OpenMinecraftServerPopup() { let exitbutton = document.createElement("div"); exitbutton.id = "whatsnewclosebutton"; - container.append(header, imagecont, text as HTMLElement, footer as HTMLElement, exitbutton); + container.append( + header, + imagecont, + text as HTMLElement, + footer as HTMLElement, + exitbutton, + ); background.append(container);