1
0
mirror of synced 2025-01-19 17:18:44 +01:00

BFRES : Fix bntx files with custom file names (PMTOK missing textures fixed)

This commit is contained in:
KillzXGaming 2020-08-11 16:47:01 -04:00
parent ca57c482b7
commit b0f77f247a
2 changed files with 1 additions and 1 deletions

View File

@ -1532,7 +1532,7 @@ namespace FirstPlugin
((BNTX)node).Save(mem); ((BNTX)node).Save(mem);
resFile.ExternalFiles.Add(new ExternalFile() { Data = mem.ToArray() }); resFile.ExternalFiles.Add(new ExternalFile() { Data = mem.ToArray() });
resFile.ExternalFileDict.Add("textures.bntx"); resFile.ExternalFileDict.Add(((BNTX)node).FileName);
} }
} }
} }