Multi material fix

This commit is contained in:
paulevsGitch 2021-07-24 21:01:46 +03:00
parent d350425049
commit a6acb67428
2 changed files with 20 additions and 14 deletions

View file

@ -102,7 +102,9 @@ public class ModelsHelper {
private MultiPartBuilder() {}
public ModelPart part(ResourceLocation modelId) {
return new ModelPart(modelId);
ModelPart part = new ModelPart(modelId);
modelParts.add(part);
return part;
}
public MultiPart build() {