mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-23 12:42:22 -04:00
Make grass not die from upper slabs
This commit is contained in:
parent
648aa1fda3
commit
b227e5a219
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user