diff --git a/src/common/datasource.ts b/src/common/datasource.ts index 225759e..efe844f 100644 --- a/src/common/datasource.ts +++ b/src/common/datasource.ts @@ -146,7 +146,8 @@ export function filterInterestingFiles(file:DataSourceTreeItem) : boolean return file.type == 'blob' && file.path.endsWith('.json') && !file.path.endsWith('.layout.json') && - !file.path.includes('/Camera/') + !file.path.includes('/Camera/') && + !file.path.startsWith('Adventure/MazeNPC_') } export interface DataSourceTreeItem