diff options
Diffstat (limited to 'src/World/Chunk.hpp')
| -rw-r--r-- | src/World/Chunk.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/World/Chunk.hpp b/src/World/Chunk.hpp index 1aa2dd1..0b00c97 100644 --- a/src/World/Chunk.hpp +++ b/src/World/Chunk.hpp @@ -21,8 +21,8 @@ public: m_position{(Real)x * Width, 0.0f, (Real)y * Width} {} struct BlockData { - BlockData() : type(BlockType::Air), light{200} {} - BlockData(BlockType t) : type(t), light{200} {} + BlockData() : type(BlockType::Air), light{0} {} + BlockData(BlockType t) : type(t), light{0} {} BlockType type; U8 light; |
