Skip to content

Commit 66b2cef

Browse files
Merge pull request #42 from CodeMonkeysMods/fix/workbench-inv-model
fix: target correct inventory model for furnace
2 parents 6c73c8d + 7bfdf5c commit 66b2cef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/client/java/com/tcm/MineTale/datagen/ModModelProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void generateBlockStateModels(BlockModelGenerators blockStateModelGenerat
8888
private void registerFurnaceWorkbench(BlockModelGenerators generator, Block block) {
8989
Identifier topModel = Identifier.fromNamespaceAndPath(MineTale.MOD_ID, "block/bench/furnace_top");
9090
Identifier bottomModel = Identifier.fromNamespaceAndPath(MineTale.MOD_ID, "block/bench/furnace_bottom");
91-
Identifier inventoryModel = Identifier.fromNamespaceAndPath(MineTale.MOD_ID, "block/bench/furnace_inventory");
91+
Identifier inventoryModel = Identifier.fromNamespaceAndPath(MineTale.MOD_ID, "item/bench/furnace");
9292

9393
generator.blockStateOutput.accept(MultiVariantGenerator.dispatch(block)
9494
.with(PropertyDispatch.initial(

0 commit comments

Comments
 (0)