Replace hirunner with hilauncher.

This commit is contained in:
SilicaAndPina 2020-12-31 11:43:23 +13:00
parent 1a8c418d36
commit 6bea119831
33 changed files with 317 additions and 3 deletions

View file

@ -0,0 +1,10 @@
const officialServers = require("./official-servers.json");
const serversList = document.getElementById("serversList")
for (let i = 0; i < Object.keys(officialServers).length; i++) {
const name = Object.keys(officialServers)[i];
const icon = officialServers[name].icon
serversList.innerHTML+= `<div class="item"><img src="./media/servericons/${icon}"><div class="name">${name}</div></div>`
}