Sodium Reloaded (Unofficial)

Sodium Reloaded (Unofficial)

0 Downloads

[NeoForge 1.21.1] Glass not rendering & error spam in console

raynna opened this issue ยท 7 comments

commented

Bug Description

Image
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

latest.log

Crash Report

crash-2025-02-18_04.12.57-client.txt
Latest crash report, doesn't seem to be related to this issue

commented

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.

commented

Ye i saw that, it is initiated tho with the null check, so somehow its not grabbing it correctly anyways

commented

https://i.imgur.com/kKftzal.png Sodium github doesnt even have the path for ColorProvider for neoforge? all i can find is

https://github.com/CaffeineMC/sodium/tree/dev/neoforge/src/main/java/net/caffeinemc/mods/sodium/neoforge/model

and from littletiles import its: import net.caffeinemc.mods.sodium.client.model.color.ColorProvider;

commented

The method reference is correct, but the object is simply null.

commented

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

commented

Result in same error with just sodium, iris & littletiles installed

commented

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.