Hash-stamp the pmd set

Same scheme as the other sets; pmd/manifest.json rides the
updatepmdsprites.sh rsync.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Christopher Monsanto
2026-08-15 23:36:14 -04:00
parent b6e70c2c41
commit f772bf1357

View File

@@ -172,7 +172,11 @@ for (const f of list("build/smogon/twittersprites/xy")) {
spritecopy(f, {dir: "twittersprites/xy"});
}
for (const f of list("src/pmd")) {
seenModels.add(f.name);
spritecopy(f, {dir: "pmd"});
{
const manifest = {};
for (const f of list("src/pmd")) {
seenModels.add(f.name);
spritecopy(f, {dir: "pmd"}, false, manifest);
}
writeManifest("pmd/manifest.json", manifest);
}