Fixed locked door scan
This commit is contained in:
parent
a8701e1d33
commit
32552ee6ff
1 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue