add fleur dividers

This commit is contained in:
ReznoRMichael 2021-07-08 22:35:52 +02:00
parent e1cd043bba
commit bffb16f814
3 changed files with 23 additions and 3 deletions

View file

@ -5005,7 +5005,17 @@ function GenerateInnerHTML(db) {
default:
for (var entry in entries) {
textFill += SingleEntryFill(section, entries[entry]);
if (entry === "saveVersion") textFill += FLEUR_DIVIDE;
switch (entry) {
case "saveVersion":
case "pantheonKnight":
case "killedHollowKnightPrime":
case "bossDoorStateTier5":
textFill += FLEUR_DIVIDE;
break;
default:
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -164,7 +164,17 @@ function GenerateInnerHTML(db) {
for (let entry in entries) {
textFill += SingleEntryFill(section, entries[entry]);
if (entry === "saveVersion") textFill += FLEUR_DIVIDE;
switch (entry) {
case "saveVersion":
case "pantheonKnight":
case "killedHollowKnightPrime":
case "bossDoorStateTier5":
textFill += FLEUR_DIVIDE;
break;
default:
}
}
}