i found this bug too, this quick fix:
1. open www/index.html on yourgame folder
2. put this code at the end of script, before "</body>" tag.
Code:
<script>
function fixbianca(event) {
if (event.key === "`") {
$gameSwitches.setValue(1102, false); // Set "Bianca in Group" switch id 1102 to OFF // read event 014 on mountain path map, if you curious about this
$gameVariables.setValue(155, 12); // Make Bianca show up in her house (kitchen table)
alert("done ;)");
document.removeEventListener("keydown", fixbianca);
}
}
document.addEventListener("keydown", fixbianca);
</script>
3. go to her house, i test it at midnight around 01.00
4. press ` to activate the code
View attachment 4618480