Skip to content

Commit

Permalink
fix(links): Canonicalize texture path
Browse files Browse the repository at this point in the history
  • Loading branch information
mammerla committed Nov 19, 2024
1 parent 1ff4c3a commit 9aae7bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/src/info/UnlinkedItemInfoGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export default class UnlinkedItemInfoGenerator implements IProjectInfoItemGenera
)
);
} else {
// UNLINK204
items.push(
new ProjectInfoItem(
InfoItemType.error,
Expand Down
2 changes: 1 addition & 1 deletion app/src/minecraft/EntityTypeResourceDefinition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default class EntityTypeResourceDefinition {
const texturePath = this._data.textures[key];

if (texturePath) {
textureList.push(texturePath);
textureList.push(texturePath.toLowerCase());
}
}

Expand Down

0 comments on commit 9aae7bb

Please sign in to comment.