rancidEgg21 switch text description
This commit is contained in:
parent
c1c1042c3d
commit
485033a387
3 changed files with 15 additions and 4 deletions
10
build/app.js
10
build/app.js
|
|
@ -2293,7 +2293,10 @@ var DataChecker = /*#__PURE__*/function () {
|
||||||
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIconGreen)(this.section, entry);
|
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIconGreen)(this.section, entry);
|
||||||
} else {
|
} else {
|
||||||
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIconRed)(this.section, entry);
|
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIconRed)(this.section, entry);
|
||||||
}
|
} // Set Steel Soul text description
|
||||||
|
|
||||||
|
|
||||||
|
this.entries[entry].spoiler = this.entries[entry].spoilerSteelSoul;
|
||||||
} // Normal Mode
|
} // Normal Mode
|
||||||
else {
|
else {
|
||||||
// playerData.tukDungEgg
|
// playerData.tukDungEgg
|
||||||
|
|
@ -2301,7 +2304,10 @@ var DataChecker = /*#__PURE__*/function () {
|
||||||
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIconGreen)(this.section, entry);
|
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIconGreen)(this.section, entry);
|
||||||
} else {
|
} else {
|
||||||
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIconRed)(this.section, entry);
|
(0,_hk_functions_js__WEBPACK_IMPORTED_MODULE_2__.SetIconRed)(this.section, entry);
|
||||||
}
|
} // Set Normal Mode text description
|
||||||
|
|
||||||
|
|
||||||
|
this.entries[entry].spoiler = this.entries[entry].spoilerNormal;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -2532,16 +2532,21 @@ class DataChecker {
|
||||||
SetIconRed(this.section, entry);
|
SetIconRed(this.section, entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set Steel Soul text description
|
||||||
|
this.entries[entry].spoiler = this.entries[entry].spoilerSteelSoul;
|
||||||
}
|
}
|
||||||
// Normal Mode
|
// Normal Mode
|
||||||
else {
|
else {
|
||||||
|
|
||||||
// playerData.tukDungEgg
|
// playerData.tukDungEgg
|
||||||
if (this.playerData[this.entries[entry].idPlayerData] === true) {
|
if (this.playerData[this.entries[entry].idPlayerData] === true) {
|
||||||
SetIconGreen(this.section, entry);
|
SetIconGreen(this.section, entry);
|
||||||
} else {
|
} else {
|
||||||
SetIconRed(this.section, entry);
|
SetIconRed(this.section, entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set Normal Mode text description
|
||||||
|
this.entries[entry].spoiler = this.entries[entry].spoilerNormal;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue