Spaces:
Build error
Build error
"use strict"; | |
${classes_js} | |
// %%%%%%%%% launch options %%%%%%%%%%%% | |
if(typeof window !== "undefined") { | |
window.eaglercraftXClientScriptElement = document.currentScript; | |
if(window.eaglercraftXOptsHints && window.eaglercraftXOptsHints.hintsVersion === 1) { | |
window.eaglercraftXOpts = window.eaglercraftXOptsHints; | |
}else { | |
var relayzId = Math.floor(Math.random() * 3); | |
window.eaglercraftXOpts = { | |
container: "game_frame", | |
worldsDB: "worlds", | |
relays: [ | |
{ addr: "wss://relay.deev.is/", comment: "lax1dude relay #1", primary: relayzId === 0 }, | |
{ addr: "wss://relay.lax1dude.net/", comment: "lax1dude relay #2", primary: relayzId === 1 }, | |
{ addr: "wss://relay.shhnowisnottheti.me/", comment: "ayunami relay #1", primary: relayzId === 2 } | |
], | |
checkRelaysForUpdates: true | |
}; | |
} | |
window.addEventListener("load", function() { | |
main(); | |
}); | |
} | |
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
if(typeof window !== "undefined") { window.eaglercraftXOpts.enableSignatureBadge = true; window.eaglercraftXOpts.assetsURI = ${assets_epk}; main(); } | |