code cleaning

This commit is contained in:
ReznoRMichael 2022-01-20 15:19:42 +01:00
parent 9fd12eef50
commit acee3f0774
3 changed files with 12 additions and 23 deletions

View file

@ -2179,20 +2179,12 @@ function ResetCompletion(db) {
if (entries[entry].hasOwnProperty("max")) { if (entries[entry].hasOwnProperty("max")) {
entries[entry].max = entries[entry].maxDefault; entries[entry].max = entries[entry].maxDefault;
} }
if (entry.hasOwnProperty("currentName")) {
delete entries[entry].currentName;
}
if (entry.hasOwnProperty("currentSpoiler")) {
delete entries[entry].currentSpoiler;
}
} }
} }
} }
} }
/* -------------------------- Classes ---------------------------- */ /* -------------------------- Classes --------------------------------------------------------------------------------------- */
var DataChecker = /*#__PURE__*/function () { var DataChecker = /*#__PURE__*/function () {
@ -2229,7 +2221,8 @@ var DataChecker = /*#__PURE__*/function () {
} }
return false; return false;
} } // end _FindItem
/** /**
* Verifies if a specific Geo Rock is destroyed and returns true/false. * Verifies if a specific Geo Rock is destroyed and returns true/false.
* @param {string} id the Geo Rock's id in the database. * @param {string} id the Geo Rock's id in the database.
@ -2249,7 +2242,8 @@ var DataChecker = /*#__PURE__*/function () {
} }
return false; return false;
} } // end _FindGeoRock
/** /**
* Verifies the status of all items in a given section (e.g. Grubs or Whispering Roots) from the database. * Verifies the status of all items in a given section (e.g. Grubs or Whispering Roots) from the database.
* @param {object} section Provide a section object to check. * @param {object} section Provide a section object to check.
@ -2272,7 +2266,8 @@ var DataChecker = /*#__PURE__*/function () {
} }
} }
} } // end checkItems
/** /**
* Verifies the status of all Geo Rocks from the database. * Verifies the status of all Geo Rocks from the database.
* @param {object} section Provide a Geo Rocks section object to check. * @param {object} section Provide a Geo Rocks section object to check.
@ -2295,11 +2290,13 @@ var DataChecker = /*#__PURE__*/function () {
} }
} }
} } // end checkGeoRocks
}]); }]);
return DataChecker; return DataChecker;
}(); }(); // end class DataChecker
/* ----------------------- Event Listeners -------------------------- */ /* ----------------------- Event Listeners -------------------------- */
// Populate HTML at load (before img and css) // Populate HTML at load (before img and css)

File diff suppressed because one or more lines are too long

View file

@ -2422,14 +2422,6 @@ function ResetCompletion(db) {
if (entries[entry].hasOwnProperty("max")) { if (entries[entry].hasOwnProperty("max")) {
entries[entry].max = entries[entry].maxDefault; entries[entry].max = entries[entry].maxDefault;
} }
if (entry.hasOwnProperty("currentName")) {
delete entries[entry].currentName;
}
if (entry.hasOwnProperty("currentSpoiler")) {
delete entries[entry].currentSpoiler;
}
} }
} }
} }