PoH compatibility with older saves
This commit is contained in:
parent
50cdcfa6ed
commit
e9a69c8a50
2 changed files with 9 additions and 2 deletions
File diff suppressed because one or more lines are too long
|
|
@ -799,7 +799,14 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
|
||||||
textPrefix += ": " + total;
|
textPrefix += ": " + total;
|
||||||
break;
|
break;
|
||||||
case "bossDoorStateTier5":
|
case "bossDoorStateTier5":
|
||||||
(playerData[i].completed === true) ? CurrentDataTrue(): CurrentDataFalse();
|
if (playerData.hasOwnProperty("bossDoorStateTier5") === false) {
|
||||||
|
CurrentDataBlank();
|
||||||
|
textPrefix = `<del>${textPrefix}</del>`;
|
||||||
|
textSuffix = `<del>${textSuffix}</del>`;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
(playerData[i].completed === true) ? CurrentDataTrue(): CurrentDataFalse();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case "killsBindingSeal":
|
case "killsBindingSeal":
|
||||||
(playerData[i] == 0) ? CurrentDataTrue(): CurrentDataFalse();
|
(playerData[i] == 0) ? CurrentDataTrue(): CurrentDataFalse();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue