add Shade to Journal
This commit is contained in:
parent
47e4e61890
commit
d2980644df
4 changed files with 19 additions and 3 deletions
10
build/app.js
10
build/app.js
|
|
@ -1699,6 +1699,14 @@ function CheckHuntersJournal(db, sectionName, playerData) {
|
|||
name = entries[entry].nameDefault;
|
||||
nameDefault = entries[entry].nameDefault;
|
||||
entries[entry].name = nameDefault;
|
||||
/* Entry Shade always unlocked */
|
||||
|
||||
if (entry === "ShadeJournal") {
|
||||
SetIconGreen(section, entry);
|
||||
/* Proceed to next entry immediately */
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
if (playerData.hasOwnProperty("kills".concat(entry))) {
|
||||
switch (entry) {
|
||||
|
|
@ -5479,7 +5487,7 @@ var HK = {
|
|||
ShadeJournal: {
|
||||
name: "Shade (0)",
|
||||
nameDefault: "Shade",
|
||||
spoiler: "Entry unlocked by default",
|
||||
spoiler: "Unlocked automatically after getting the Journal",
|
||||
wiki: "Shade"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1813,6 +1813,14 @@ function CheckHuntersJournal(db, sectionName, playerData) {
|
|||
|
||||
entries[entry].name = nameDefault;
|
||||
|
||||
/* Entry Shade always unlocked */
|
||||
if (entry === "ShadeJournal") {
|
||||
SetIconGreen(section, entry);
|
||||
|
||||
/* Proceed to next entry immediately */
|
||||
continue;
|
||||
}
|
||||
|
||||
if (playerData.hasOwnProperty(`kills${entry}`)) {
|
||||
|
||||
switch (entry) {
|
||||
|
|
|
|||
|
|
@ -2433,7 +2433,7 @@ const HK = {
|
|||
ShadeJournal: {
|
||||
name: "Shade (0)",
|
||||
nameDefault: "Shade",
|
||||
spoiler: "Entry unlocked by default",
|
||||
spoiler: "Unlocked automatically after getting the Journal",
|
||||
wiki: "Shade"
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue