CheckAdditionalThings, map location delete, names
This commit is contained in:
parent
2801e06332
commit
95baf76afa
2 changed files with 5 additions and 5 deletions
File diff suppressed because one or more lines are too long
|
|
@ -750,7 +750,7 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
|
||||||
for (let i = 0; i < arrayLength; i++) {
|
for (let i = 0; i < arrayLength; i++) {
|
||||||
if (sceneData.geoRocks[i].hitsLeft > 0) {
|
if (sceneData.geoRocks[i].hitsLeft > 0) {
|
||||||
countTotal++;
|
countTotal++;
|
||||||
console.log(`#${countTotal} | ${sceneData.geoRocks[i].id} | Map location: ${sceneData.geoRocks[i].sceneName}`);
|
console.log(`#${countTotal} | ${sceneData.geoRocks[i].id} | ${sceneData.geoRocks[i].sceneName}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.groupEnd();
|
console.groupEnd();
|
||||||
|
|
@ -791,7 +791,7 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
|
||||||
if (length) {
|
if (length) {
|
||||||
console.groupCollapsed("%cUnrescued Grubs List:", "color: #16c60c;");
|
console.groupCollapsed("%cUnrescued Grubs List:", "color: #16c60c;");
|
||||||
for (let i = 0; i < length; i++) {
|
for (let i = 0; i < length; i++) {
|
||||||
console.log(`#${HK.GRUBS_LIST.indexOf(missingGrubsList[i]) + 1} | Map location: ${missingGrubsList[i]}`);
|
console.log(`#${HK.GRUBS_LIST.indexOf(missingGrubsList[i]) + 1} | ${missingGrubsList[i]}`);
|
||||||
}
|
}
|
||||||
console.groupEnd();
|
console.groupEnd();
|
||||||
}
|
}
|
||||||
|
|
@ -801,8 +801,8 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
|
||||||
|
|
||||||
// Start main loop
|
// Start main loop
|
||||||
for (let i in dataObject) {
|
for (let i in dataObject) {
|
||||||
textPrefix = dataObject[i][0];
|
textPrefix = dataObject[i].name;
|
||||||
(dataObject[i][1]) ? textSuffix = dataObject[i][1]: textSuffix = "";
|
(dataObject[i].hasOwnProperty("spoiler")) ? textSuffix = dataObject[i].spoiler: textSuffix = "";
|
||||||
|
|
||||||
let {
|
let {
|
||||||
amount,
|
amount,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue