Skip to content

Commit 9c5f332

Browse files
committed
Fix #714: invalid item renderer for decorated pots.
1 parent 2f16ffc commit 9c5f332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/noobanidus/mods/lootr/common/client/item/LootrDecoratedPotItemRenderer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class LootrDecoratedPotItemRenderer extends BlockEntityWithoutLevelRender
2424
public LootrDecoratedPotItemRenderer(BlockEntityRenderDispatcher pBlockEntityRenderDispatcher, EntityModelSet pEntityModelSet) {
2525
super(pBlockEntityRenderDispatcher, pEntityModelSet);
2626
this.blockEntityRenderDispatcher = pBlockEntityRenderDispatcher;
27-
this.blockEntity = new LootrDecoratedPotBlockEntity(BlockPos.ZERO, LootrRegistry.getChestBlock().defaultBlockState());
27+
this.blockEntity = new LootrDecoratedPotBlockEntity(BlockPos.ZERO, LootrRegistry.getDecoratedPotBlock().defaultBlockState());
2828
}
2929

3030
public LootrDecoratedPotItemRenderer() {

0 commit comments

Comments
 (0)