BuiltBrokenModding / MFFS_Classic

Classic version of Claclavia's MMFS mod
MIT License
19 stars 11 forks source link

Update for NeoForge 1.20.1-21.0.37-BETA #70

Closed Jestarix closed 5 months ago

Jestarix commented 5 months ago

Within RenderPostProcessing.java on line 115,

effect.setSampler("NoiseSampler", () -> minecraft.textureManager.getTexture(NOISE_SEED).getId());

Creates an error for attempting to access a private field. Changing the line to the following appears to work, but I can't promise it still has the desired function.

effect.setSampler("NoiseSampler", () -> minecraft.getTextureManager().getTexture(NOISE_SEED).getId());