klaudio 0.12.6 → 0.12.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/extractor.js +1 -1
package/package.json
CHANGED
package/src/extractor.js
CHANGED
|
@@ -140,7 +140,7 @@ export async function findPackedAudioFiles(gamePath, maxFiles = 50) {
|
|
|
140
140
|
const ext = extname(entry.name).toLowerCase();
|
|
141
141
|
// Formats vgmstream-cli can convert directly
|
|
142
142
|
// (.bnk needs bnkextr preprocessing — skip for now)
|
|
143
|
-
if (ext === ".wem" || ext === ".fsb" || ext === ".bank" || ext === ".bun") {
|
|
143
|
+
if (ext === ".wem" || ext === ".fsb" || ext === ".bank" || ext === ".bun" || ext === ".pck") {
|
|
144
144
|
results.push({ path: fullPath, name: entry.name, dir });
|
|
145
145
|
}
|
|
146
146
|
}
|