Skip to content

Commit

Permalink
🐛 builtin/entity model was removed in 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
misode committed Dec 16, 2024
1 parent 245e723 commit 1c6d148
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/java-edition/src/dependency/mcmeta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,10 @@ export function symbolRegistrar(
}
symbols.query(McmetaSummaryUri, 'model', 'minecraft:builtin/generated')
.enter({ usage: { type: 'declaration' } })
symbols.query(McmetaSummaryUri, 'model', 'minecraft:builtin/entity')
.enter({ usage: { type: 'declaration' } })
if (ReleaseVersion.cmp(release, '1.21.4') < 0) {
symbols.query(McmetaSummaryUri, 'model', 'minecraft:builtin/entity')
.enter({ usage: { type: 'declaration' } })
}
}

return (symbols) => {
Expand Down

0 comments on commit 1c6d148

Please sign in to comment.