fix out of range

This commit is contained in:
MihailRis 2025-11-22 17:50:19 +03:00
parent fc292a57cd
commit 6b2754e951

View File

@ -35,7 +35,7 @@ static void on_chunk_register_event(
uint8_t flagsCache[1024] {};
for (int i = totalBegin; i <= totalEnd; i++) {
for (int i = totalBegin; i < totalEnd; i++) {
blockid_t id = voxels[i].id;
uint8_t bits = id < sizeof(flagsCache) ? flagsCache[id] : 0;
if ((bits & 0x80) == 0) {