We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 208a21c commit 63e6d87Copy full SHA for 63e6d87
1 file changed
src/main/java/me/cortex/voxy/client/core/model/ModelFactory.java
@@ -685,7 +685,7 @@ public int getMinY() {
685
if (isEmissive) {
686
return 15;//full bright
687
}
688
- return state.getLightEmission();
+ return Math.clamp(state.getLightEmission(),0,15);
689
690
691
private static final class BiomeUploadResult implements ResultUploader {
0 commit comments