Skip to content
Snippets Groups Projects
Commit c2dd167a authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'RA-fix' into 'pregmod-master'

RA fix

See merge request pregmodfan/fc-pregmod!8603
parents 50aebf43 99d1745e
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ globalThis.isItemAccessible = (function() { ...@@ -37,7 +37,7 @@ globalThis.isItemAccessible = (function() {
continue; continue;
} }
if (V.cheatMode || isAvailable(obj)) { if (V.cheatMode || isAvailable(obj)) {
const name = (obj.fs.unlocks) ? `${obj.name} (FS)` : obj.name; const name = (obj.fs && obj.fs.unlocks) ? `${obj.name} (FS)` : obj.name;
array.push([name, key]); array.push([name, key]);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment