diff --git a/data/manifest.yaml b/data/manifest.yaml index 7f7b0366..41a4839c 100644 --- a/data/manifest.yaml +++ b/data/manifest.yaml @@ -428793,16 +428793,6 @@ Sam & Max Save the World: - config when: - os: windows - /Telltale Games/*/*.save: - tags: - - save - when: - - os: windows - /Telltale Games/*/prefs.prop: - tags: - - config - when: - - os: windows gog: id: 1207659065 steam: diff --git a/src/wiki.ts b/src/wiki.ts index 0f0154c2..0597ea67 100644 --- a/src/wiki.ts +++ b/src/wiki.ts @@ -364,6 +364,11 @@ export function pathIsTooBroad(path: string): boolean { return true; } + // Several games/episodes are grouped together here. + if (path.startsWith("/Telltale Games/*/")) { + return true; + } + // Drive letters: if (path.match(/^[a-zA-Z]:$/)) { return true;