diff --git a/MCGalaxy/Levels/Level.Blocks.cs b/MCGalaxy/Levels/Level.Blocks.cs index 2d4dd65e6..e37636c50 100644 --- a/MCGalaxy/Levels/Level.Blocks.cs +++ b/MCGalaxy/Levels/Level.Blocks.cs @@ -468,7 +468,7 @@ namespace MCGalaxy { public bool LightPasses(ExtBlock block) { BlockDefinition def = GetBlockDef(block); - if (def != null) return !def.BlocksLight || def.BlockDraw != DrawType.Opaque; + if (def != null) return !def.BlocksLight || def.BlockDraw != DrawType.Opaque || def.MinZ > 0; return Block.LightPass(block.BlockID); } }