[BUG] Console spammed with "false"
Shazuli opened this issue ยท 9 comments
With Effective and required library mods installed the log is spammed with "false".
...
false
false
false
false
false
false
false
false
false
false
false
[16:28:31] [Server thread/INFO]: Saving and pausing game...
[16:28:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
false
false
[16:28:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[16:28:31] [Server thread/INFO]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
false
false
false
false
false
false
false
false
false
false
false
false
...
looks like someone left a debug statement in the release
Thought the same thing. I am looking into the code but didn't find it yet.
Maybe this is the culprit:
private static RenderLayer replaceRenderLayer(RenderLayer base) {
System.out.println(isRgb);
if (isRgb) {
System.out.println("TEST");
return Effective.RAINBOW_SHADER.getRenderLayer(base);
}
return base;
}
As isRgb seems to be false, it is constantly printing false to the console output
Just to be clear, the code is not there anymore, but the release may have been made before the code was removed.
Most likely 1.5 will fix this problem.