add world interactions tab
This commit is contained in:
parent
e01ddd49a4
commit
7a65afb3ce
3 changed files with 17 additions and 1 deletions
|
|
@ -8700,6 +8700,12 @@ function GenerateInnerHTML(db) {
|
|||
textFill += "<div id=\"tab-collectibles\" class=\"large-section\">";
|
||||
break;
|
||||
|
||||
/* Secrets */
|
||||
|
||||
case "worldInteractions":
|
||||
textFill += "<div id=\"tab-secrets\" class=\"large-section\">";
|
||||
break;
|
||||
|
||||
/* Statistics */
|
||||
|
||||
case "statistics":
|
||||
|
|
@ -9065,6 +9071,8 @@ function GenerateInnerHTML(db) {
|
|||
|
||||
case "charmNotches": // Collectibles
|
||||
|
||||
case "worldInteractions": // Secrets
|
||||
|
||||
case "statistics": // Stats
|
||||
|
||||
case "hallOfGods":
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -277,6 +277,13 @@ function GenerateInnerHTML(db) {
|
|||
|
||||
break;
|
||||
|
||||
/* Secrets */
|
||||
case "worldInteractions":
|
||||
|
||||
textFill += `<div id="tab-secrets" class="large-section">`;
|
||||
|
||||
break;
|
||||
|
||||
/* Statistics */
|
||||
case "statistics":
|
||||
|
||||
|
|
@ -663,6 +670,7 @@ function GenerateInnerHTML(db) {
|
|||
case "achievements": // Essentials
|
||||
case "huntersJournalOptional": // Journal
|
||||
case "charmNotches": // Collectibles
|
||||
case "worldInteractions": // Secrets
|
||||
case "statistics": // Stats
|
||||
case "hallOfGods": // Godmaster
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue