Fixed locked door scan

This commit is contained in:
dazedanon 2025-12-20 11:51:03 -06:00
parent a8701e1d33
commit 32552ee6ff

View file

@ -338,9 +338,12 @@
// Check for chest patterns
if (name.includes('宝箱')) return true; // "Treasure chest"
// Check for barred door/gate patterns
// Check for barred door/gate patterns (iron bars)
if (name.includes('鉄格子')) return true; // "Iron bars/Barred gate"
// Check for barred/latch doors (opens from above/below pattern)
if (name.includes('上から') && name.includes('下から')) return true; // "From above... from below" latch doors
return false;
};