Skip to content

Commit

Permalink
Fix Blabber generator's invalid values for unskippable
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrofab committed Jan 15, 2024
1 parent cfcb14a commit 4f16189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wiki/blabber/dialogue_generator/dialogue-editing.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import BlabberDialogue from "./blabber-dialogue.js";
exportButton.disabled = true;
startInput.disabled = true;
startInput.addEventListener('change', e => dialogue.startAt(e.target.value));
unskippableInput.addEventListener('change', e => dialogue.unskippable(e.target.value));
unskippableInput.addEventListener('change', e => dialogue.unskippable(e.target.checked));
dialogueLayoutInputs.forEach((e) => e.addEventListener('change', (ev) => {
dialogue.layout(document.querySelector('input[name=dialogue-layout]:checked').value);
}))
Expand Down

0 comments on commit 4f16189

Please sign in to comment.