Skip to content

Commit

Permalink
fix(core): uses unsigned interiorProxyHash as #mt file name
Browse files Browse the repository at this point in the history
  • Loading branch information
pedr0fontoura committed Nov 17, 2022
1 parent c9ab0e3 commit b7c4afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/formats/codewalker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ export class CodeWalkerFormat {
},
};

const filePath = path.resolve(targetPath, `${interiorProxyHash}.ymt.pso.xml`);
const filePath = path.resolve(targetPath, `${interiorProxyHash >>> 0}.ymt.pso.xml`);

await this.writeFile(filePath, naOcclusionInteriorMetadataObject);

Expand Down

0 comments on commit b7c4afa

Please sign in to comment.