Skip to content

Commit 8952a10

Browse files
committed
Fix client rendering mistake.
1 parent 2191e67 commit 8952a10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fabric/src/main/java/noobanidus/mods/lootr/fabric/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.tile = new LootrDecoratedPotBlockEntity(BlockPos.ZERO, LootrRegistry.getChestBlock().defaultBlockState());
27+
this.tile = new LootrDecoratedPotBlockEntity(BlockPos.ZERO, LootrRegistry.getDecoratedPotBlock().defaultBlockState());
2828
}
2929

3030
public LootrDecoratedPotItemRenderer() {

0 commit comments

Comments
 (0)