Fix vanilla models with parents not loading properly from forge blockstates.
This commit is contained in:
parent
6cbd418703
commit
ec3e8c2039
1 changed files with 4 additions and 0 deletions
|
@ -258,6 +258,10 @@ public final class ModelLoader extends ModelBakery
|
|||
builder.add(new ResourceLocation(s));
|
||||
}
|
||||
}
|
||||
|
||||
if (model.parent != null)
|
||||
builder.addAll(model.parent.getTextures(modelGetter, missingTextureErrors));
|
||||
|
||||
return builder.build();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue