Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions versions/26.2/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
mapping_provider = none
standalone_sources = true
malilib_provider = modrinth
malilib_fileid = 0.29.2
malilib_fileid = 0.29.3
litematica_provider = modrinth
litematica_fileid = 0.28.2
litematica_fileid = 0.28.3
essentialclient_filename = essential-client-1.20.1-1.3.6.jar
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import fi.dy.masa.litematica.render.schematic.ChunkMeshDataSchematic;
import fi.dy.masa.litematica.render.schematic.ChunkCacheSchematic;
import fi.dy.masa.litematica.render.schematic.ChunkRenderDataSchematic;
import fi.dy.masa.litematica.render.schematic.ChunkRenderDispatcherBuffers;
import fi.dy.masa.litematica.render.schematic.ChunkRendererSchematicVbo;
import fi.dy.masa.litematica.render.schematic.FluidModelRendererSchematic;
import fi.dy.masa.litematica.render.schematic.IBlockOutputSchematic;
Expand All @@ -29,7 +30,7 @@ public class ChunkRendererSchematicVboMixin {
protected ChunkCacheSchematic schematicWorldView;

@Inject(method = "renderBlocksAndOverlay", at = @At("HEAD"), cancellable = true, remap = false)
private void onRenderBlocksAndOverlay(BlockModelRendererSchematic blockRenderer, FluidModelRendererSchematic fluidRenderer, BlockPos pos, ChunkRenderDataSchematic data, ChunkMeshDataSchematic meshData, IBlockOutputSchematic blockOutput, Vec3 cameraPos, VisGraph visibilityGraph, CallbackInfo ci) {
private void onRenderBlocksAndOverlay(BlockModelRendererSchematic blockRenderer, FluidModelRendererSchematic fluidRenderer, BlockPos pos, ChunkRenderDataSchematic data, ChunkMeshDataSchematic meshData, ChunkRenderDispatcherBuffers pack, IBlockOutputSchematic blockOutput, Vec3 cameraPos, VisGraph visibilityGraph, CallbackInfo ci) {
if (!RENDER_ONLY_HOLDING_ITEMS.getBooleanValue()) return;
BlockState stateSchematic = this.schematicWorldView.getBlockState(pos);
Item item = stateSchematic.getBlock().asItem();
Expand Down