fix color for connected grass blocks

This commit is contained in:
octarine-noise
2016-12-04 22:02:14 +01:00
parent f7044e5225
commit 56e3dc5d24

View File

@@ -75,7 +75,7 @@ class RenderGrass : AbstractBlockRenderingHandler(BetterFoliageMod.MOD_ID) {
rotateUV(2)
if (isSnowed) {
if (!ctx.aoEnabled) setGrey(1.4f)
} else if (ctx.aoEnabled) multiplyColor(blockColor)
} else if (ctx.aoEnabled && grassInfo.overrideColor == null) multiplyColor(blockColor)
}
)
}