relics count
This commit is contained in:
parent
24e29cc4e3
commit
55b3c2cc26
3 changed files with 5 additions and 5 deletions
File diff suppressed because one or more lines are too long
|
|
@ -887,8 +887,8 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
|
||||||
case "relicsHallownestSeal":
|
case "relicsHallownestSeal":
|
||||||
case "relicsKingsIdol":
|
case "relicsKingsIdol":
|
||||||
case "relicsArcaneEgg":
|
case "relicsArcaneEgg":
|
||||||
total = playerData[dataObject[i][3]] + playerData[dataObject[i][4]];
|
total = playerData[dataObject[i].nameHeld] + playerData[dataObject[i].nameSold];
|
||||||
(total >= dataObject[i][2]) ? CurrentDataTrue(): CurrentDataBlank();
|
(total >= dataObject[i].max) ? CurrentDataTrue(): CurrentDataBlank();
|
||||||
textPrefix += ": " + total;
|
textPrefix += ": " + total;
|
||||||
break;
|
break;
|
||||||
case "bossDoorStateTier5":
|
case "bossDoorStateTier5":
|
||||||
|
|
|
||||||
|
|
@ -69,4 +69,4 @@ function LoadJSON(filename) {
|
||||||
} */
|
} */
|
||||||
|
|
||||||
// jsonObj = LoadJSON("../save/" + fileName[5], JSONparse(response));
|
// jsonObj = LoadJSON("../save/" + fileName[5], JSONparse(response));
|
||||||
LoadJSON("../save/" + fileName[5] + ".json");
|
LoadJSON("../save/" + fileName[11] + ".json");
|
||||||
Loading…
Reference in a new issue