plugin-backend #1

Merged
ada merged 34 commits from plugin-backend into main 2024-05-01 00:21:12 -05:00
2 changed files with 16 additions and 14 deletions
Showing only changes of commit db17504ea0 - Show all commits

View File

@ -930,12 +930,12 @@ async function update_breakdown(scene, checks, entrances) {
// Check for changes, and if so, update
if (
breakdown_checks.dataset.checksCollected !=
parseInt(breakdown_checks.dataset.checksCollected) !=
checks.collected + checks.found
) {
update_breakdown_checks(scene, checks);
}
if (breakdown_entrances.dataset.entrancesFound != entrances.found) {
if (parseInt(breakdown_entrances.dataset.entrancesFound) != entrances.found) {
update_breakdown_entrances(scene, entrances);
}
}
@ -945,9 +945,11 @@ async function update_breakdown_list(data, changed) {
if (changed.checks) {
Object.keys(data.scenes).forEach((scene) =>
update_breakdown(scene, data.scenes[scene], {
found: document.querySelector(
found: parseInt(
document.querySelector(
`.breakdown[data-scene="${scene}"] .breakdown-block-entrances-title`
).dataset.entrancesFound,
).dataset.entrancesFound
),
})
);
} else if (changed.entrances) {