skip counting some entries
This commit is contained in:
parent
eeb7ec56ec
commit
0976c4426b
3 changed files with 26 additions and 1 deletions
12
build/app.js
12
build/app.js
|
|
@ -402,6 +402,18 @@ function CheckExtendedCompletion(db) {
|
||||||
|
|
||||||
default:
|
default:
|
||||||
for (var entry in entries) {
|
for (var entry in entries) {
|
||||||
|
/* Skip counting these entries */
|
||||||
|
switch (entry) {
|
||||||
|
case "oldNail":
|
||||||
|
case "geoPool":
|
||||||
|
case "rancidEggs":
|
||||||
|
case "jinnEggsSold":
|
||||||
|
case "xunFlowerBrokeTimes":
|
||||||
|
case "geoRocks":
|
||||||
|
case "itemsDiscovered":
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (entries[entry].hasOwnProperty("icon")) {
|
if (entries[entry].hasOwnProperty("icon")) {
|
||||||
intro.extendedCompletionTotal++;
|
intro.extendedCompletionTotal++;
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -479,6 +479,19 @@ function CheckExtendedCompletion(db) {
|
||||||
|
|
||||||
for (let entry in entries) {
|
for (let entry in entries) {
|
||||||
|
|
||||||
|
/* Skip counting these entries */
|
||||||
|
switch (entry) {
|
||||||
|
|
||||||
|
case "oldNail":
|
||||||
|
case "geoPool":
|
||||||
|
case "rancidEggs":
|
||||||
|
case "jinnEggsSold":
|
||||||
|
case "xunFlowerBrokeTimes":
|
||||||
|
case "geoRocks":
|
||||||
|
case "itemsDiscovered":
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (entries[entry].hasOwnProperty("icon")) {
|
if (entries[entry].hasOwnProperty("icon")) {
|
||||||
|
|
||||||
intro.extendedCompletionTotal++;
|
intro.extendedCompletionTotal++;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue