Checkpoint current interactive fiction changes

This commit is contained in:
2026-06-03 12:59:43 +02:00
parent 61127c0a92
commit bccefd2a68
11 changed files with 342 additions and 895 deletions
+5
View File
@@ -243,6 +243,11 @@ class InkEngine {
remainingTags.push(tag);
return;
}
if (!currentText) {
previous.tags.push(tag);
remainingTags.push(tag);
return;
}
const matchesCurrent = currentText.includes(term);
const matchesPrevious = previousText.includes(term);
if (!matchesCurrent && matchesPrevious) {
+1 -1
View File
File diff suppressed because one or more lines are too long