diff --git a/index.html b/index.html index 175a1d6..11a45fe 100644 --- a/index.html +++ b/index.html @@ -13174,7 +13174,7 @@ if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()[" document.getElementById("seedpoolarea").style.display = "block"; } // change currency -janin.selectedCurrency = janin.currencies[1]; +janin.currency.useCurrency(4); if (ninja.getQueryString()["currency"] != undefined) { for(i = 0; i < janin.currencies.length; i++) { if (janin.currencies[i].name.toLowerCase() == ninja.getQueryString()["currency"].toLowerCase()) diff --git a/src/ninja.onload.js b/src/ninja.onload.js index 6e37d67..4e3a416 100644 --- a/src/ninja.onload.js +++ b/src/ninja.onload.js @@ -15,7 +15,7 @@ if (ninja.getQueryString()["showseedpool"] == "true" || ninja.getQueryString()[" document.getElementById("seedpoolarea").style.display = "block"; } // change currency -janin.selectedCurrency = janin.currencies[1]; +janin.currency.useCurrency(4); if (ninja.getQueryString()["currency"] != undefined) { for(i = 0; i < janin.currencies.length; i++) { if (janin.currencies[i].name.toLowerCase() == ninja.getQueryString()["currency"].toLowerCase())