Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import dev.architectury.injectables.annotations.ExpectPlatform;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.client.renderer.chunk.ChunkSectionLayer;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.material.Fluid;

Expand All @@ -32,12 +32,12 @@ private RenderTypeRegistry() {
}

@ExpectPlatform
public static void register(RenderType type, Block... blocks) {
public static void register(ChunkSectionLayer type, Block... blocks) {
throw new AssertionError();
}

@ExpectPlatform
public static void register(RenderType type, Fluid... fluids) {
public static void register(ChunkSectionLayer type, Fluid... fluids) {
throw new AssertionError();
}
}
Expand Down
Loading