geo rocks green icon
This commit is contained in:
parent
5bcb445ae0
commit
2b60bc8e66
4 changed files with 17 additions and 8 deletions
11
build/app.js
11
build/app.js
|
|
@ -1181,9 +1181,13 @@ function CheckAdditionalThings(section, dataObject, playerData, worldData, scene
|
|||
dataObject[i].discoveredTotal = discoveredTotal;
|
||||
dataObject[i].notActivated = notActivated;
|
||||
dataObject[i].activated = activated;
|
||||
/* textPrefix += `: ${notActivated} | ${activated} | ${discoveredTotal}`; */
|
||||
|
||||
SetIconNone(section, i);
|
||||
if (activated >= dataObject[i].max) {
|
||||
SetIconGreen(section, i);
|
||||
} else {
|
||||
SetIconNone(section, i);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case "itemsDiscovered":
|
||||
|
|
@ -5623,7 +5627,8 @@ var HK = {
|
|||
wiki: "Geo#How_to_Acquire",
|
||||
notActivated: 0,
|
||||
activated: 0,
|
||||
discoveredTotal: 0
|
||||
discoveredTotal: 0,
|
||||
max: 205
|
||||
},
|
||||
itemsDiscovered: {
|
||||
id: "itemsDiscovered",
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1311,8 +1311,11 @@ function CheckAdditionalThings(section, dataObject, playerData, worldData, scene
|
|||
dataObject[i].notActivated = notActivated;
|
||||
dataObject[i].activated = activated;
|
||||
|
||||
/* textPrefix += `: ${notActivated} | ${activated} | ${discoveredTotal}`; */
|
||||
SetIconNone(section, i);
|
||||
if (activated >= dataObject[i].max) {
|
||||
SetIconGreen(section, i);
|
||||
} else {
|
||||
SetIconNone(section, i);
|
||||
}
|
||||
break;
|
||||
|
||||
case "itemsDiscovered":
|
||||
|
|
|
|||
|
|
@ -2642,7 +2642,8 @@ const HK = {
|
|||
wiki: "Geo#How_to_Acquire",
|
||||
notActivated: 0,
|
||||
activated: 0,
|
||||
discoveredTotal: 0
|
||||
discoveredTotal: 0,
|
||||
max: 205
|
||||
},
|
||||
itemsDiscovered: {
|
||||
id: "itemsDiscovered",
|
||||
|
|
|
|||
Loading…
Reference in a new issue