include numbers in grubs and geo rocks lists

This commit is contained in:
ReznoRMichael 2021-02-14 02:44:17 +01:00
parent b1d15dbc3a
commit d89c13f3f4
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -750,7 +750,7 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
console.log("%cAll Geo Rocks Broken!", "color: #16c60c; font-weight: 700;"); console.log("%cAll Geo Rocks Broken!", "color: #16c60c; font-weight: 700;");
} }
else { else {
console.groupCollapsed("%cUnbroken Geo Rocks List:", "color: #16c60c; font-weight: 700;"); console.groupCollapsed(`%cUnbroken Geo Rocks (${countTotal}):`, "color: #16c60c; font-weight: 700;");
for (let i = 0, length = geoRocksLog.length; i < length; i++ ) { for (let i = 0, length = geoRocksLog.length; i < length; i++ ) {
console.log(geoRocksLog[i]); console.log(geoRocksLog[i]);
@ -794,7 +794,7 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
console.log("%cAll Grubs Rescued!", "color: #16c60c; font-weight: 700;"); console.log("%cAll Grubs Rescued!", "color: #16c60c; font-weight: 700;");
} }
else { else {
console.groupCollapsed("%cUnrescued Grubs List:", "color: #16c60c; font-weight: 700;"); console.groupCollapsed(`%cUnrescued Grubs (${length}):`, "color: #16c60c; font-weight: 700;");
for (let i = 0; i < length; i++) { for (let i = 0; i < length; i++) {
console.log(`#${HK.GRUBS_LIST.indexOf(missingGrubsList[i]) + 1} 🗺️ ${TranslateMapName(missingGrubsList[i])} ⌨️ ${missingGrubsList[i]}`); console.log(`#${HK.GRUBS_LIST.indexOf(missingGrubsList[i]) + 1} 🗺️ ${TranslateMapName(missingGrubsList[i])} ⌨️ ${missingGrubsList[i]}`);