wip more dioramas

This commit is contained in:
David Allemang
2026-07-09 17:33:04 -04:00
parent c126a42599
commit 046fb89214
11 changed files with 282 additions and 937 deletions

View File

@@ -29,7 +29,7 @@ function evaluateWhen(properties, condition) {
const prop = properties[key];
if (typeof val === 'string' && val.includes('|')) {
if (!val.split('|').includes(prop)) return false;
} else if (prop !== val) {
} else if (prop !== val.toString()) {
return false;
}
}