
[NeoForge 1.21.1] Glass not rendering & error spam in console
raynna opened this issue ยท 7 comments
Bug Description
Neoforge
Minecraft: 1.20.1
Sodium: 0.6.9
Iris: 1.8.7
Glass will not show up and spam console with 2 errors:
[Thread-38/ERROR][littletiles/]: java.lang.NullPointerException: Cannot invoke "net.caffeinemc.mods.sodium.client.model.color.ColorProvider.getColors(net.caffeinemc.mods.sodium.client.world.LevelSlice, net.minecraft.core.BlockPos, net.minecraft.core.BlockPos$MutableBlockPos, Object, net.caffeinemc.mods.sodium.client.model.quad.ModelQuadView, int[])" because "colorizer" is null
and
[20Feb2025 15:59:48.469] [Thread-37/ERROR][littletiles/]: java.lang.NullPointerException
Reproduction Steps
Installed latest sodium, iris & little tiles, entered game and placed down any glass block with littletiles mod.
Log File
Crash Report
crash-2025-02-18_04.12.57-client.txt
Latest crash report, doesn't seem to be related to this issue
Looks like the problem is here: https://github.com/CreativeMD/LittleTiles/blob/1.21/src/main/java/team/creative/littletiles/client/mod/sodium/pipeline/LittleRenderPipelineSodium.java#L211
It seems that the ColorProvider
that is returned from colorProvider.getColorProvider(state.getBlock())
is null.
Ye i saw that, it is initiated tho with the null check, so somehow its not grabbing it correctly anyways
https://i.imgur.com/kKftzal.png Sodium github doesnt even have the path for ColorProvider for neoforge? all i can find is
and from littletiles import its: import net.caffeinemc.mods.sodium.client.model.color.ColorProvider;
The method reference is correct, but the object is simply null.
Ah okey now i see, it was under common, will try to disable all sodium extra mods once again and see if that fixes it
Per the Little Tiles source code:
if (colorizer == null)
colorizer = colorProvider.getColorProvider(state.getBlock());
colorizer.getColors(slice, pos, scratchColorPos, state, editorQuad, colors);
The color provider may return null
if the block doesn't have a color provider, but Little Tiles does not check for this. It only tries to initialize it if there isn't yet a colorizer, but it does not check if it actually got initialized.