Changing model loading (WIP)

This commit is contained in:
Aleksey 2021-05-22 19:14:52 +03:00
parent 4d2e3d7be6
commit 53c9525c2d
33 changed files with 435 additions and 128 deletions

View file

@ -32,6 +32,6 @@ public class BlockBase extends Block implements BlockModelProvider {
@Override
public BlockModel getModel(ResourceLocation blockId) {
return (BlockModel) getBlockModel(blockId, defaultBlockState());
return getBlockModel(blockId, defaultBlockState());
}
}