Skip to content

Commit cf0186e

Browse files
committed
Add support for [ExcludeLoadGameType foo]
1 parent 20b8d91 commit cf0186e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/TocFileParser.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@ public function listFiles(string $tocFilePath): array
9494
continue 2; // skip this file
9595
}
9696
break;
97+
case 'ExcludeLoadGameType':
98+
if ($this->allowLoadGameType($value)) {
99+
continue 2; // skip this file
100+
}
101+
break;
97102
case 'AllowLoad':
98103
if (strtolower($value) === 'glue') {
99104
continue 2; // skip this file

0 commit comments

Comments
 (0)