From 54de8482b75290d4262a230e50b727dd350bac3d Mon Sep 17 00:00:00 2001 From: NULL511 Date: Wed, 21 Aug 2024 17:26:20 -0400 Subject: [PATCH] floodfill lantern color fix --- shaders/dimensions/setup.csh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shaders/dimensions/setup.csh b/shaders/dimensions/setup.csh index 27d6170..87c7d9e 100644 --- a/shaders/dimensions/setup.csh +++ b/shaders/dimensions/setup.csh @@ -770,7 +770,9 @@ void main() { mixWeight = 0.8; } - if (blockId == BLOCK_TORCH || blockId == ITEM_TORCH) { + if (blockId == BLOCK_TORCH || blockId == ITEM_TORCH || + blockId == BLOCK_LANTERN || blockId == ITEM_LANTERN + ) { lightColor = vec3(TORCH_R, TORCH_G, TORCH_B); lightRange = 14.0; mixWeight = 0.8;