Fixed snow blocking all light

This commit is contained in:
Joshua Barretto 2021-02-14 17:04:20 +00:00
parent 3ac0a99c84
commit 22d8b87938

View File

@ -201,6 +201,7 @@ impl Block {
BlockKind::Water => (1, 1),
BlockKind::Leaves => (9, 255),
BlockKind::Wood => (6, 2),
BlockKind::Snow => (6, 2),
_ if self.is_opaque() => (0, 255),
_ => (0, 0),
}