Mr Mushroom checking done

This commit is contained in:
ReznoRMichael 2021-02-12 18:40:23 +01:00
parent f8099abfa2
commit 2877965dd1
3 changed files with 7 additions and 6 deletions

File diff suppressed because one or more lines are too long

View file

@ -8,7 +8,7 @@
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- <link href="css/fontello.css" rel="stylesheet"> -->
<!-- <link href="css/style.css" rel="stylesheet"> -->
<title>Hollow Knight: Analyze Save Completion Online</title>
<title>Hollow Knight: Save Game Completion Analyzer Web Tool</title>
<meta name="description" content="A simple open source tool for checking every single thing you missed for your Game Completion Percentage.">
<meta name="keywords" content="hollow knight, tool, online, save, game, completion, check, checker, percentage, percent, left, analyze, analyzer, file">

View file

@ -927,14 +927,15 @@ function CheckAdditionalThings(divId, dataObject, playerData, worldData, sceneDa
(playerData[i] === true) ? CurrentDataTrue(): CurrentDataBlank();
break;
case "mrMushroomState":
CheckMrMushroomState(divId, dataObject[i], playerData[i]);
break;
default:
(playerData[i] === true) ? CurrentDataTrue(): CurrentDataFalse();
} // end main for loop
} // end switch (i)
if (i === "mrMushroomState") continue;
FillHTML(divId, textPrefix, textSuffix);
}
} // end for (let i in dataObject)
}
function CheckMrMushroomState(divId, dataObject, mrMushroomState = 0) {