fix out of range
This commit is contained in:
parent
fc292a57cd
commit
6b2754e951
@ -35,7 +35,7 @@ static void on_chunk_register_event(
|
|||||||
|
|
||||||
uint8_t flagsCache[1024] {};
|
uint8_t flagsCache[1024] {};
|
||||||
|
|
||||||
for (int i = totalBegin; i <= totalEnd; i++) {
|
for (int i = totalBegin; i < totalEnd; i++) {
|
||||||
blockid_t id = voxels[i].id;
|
blockid_t id = voxels[i].id;
|
||||||
uint8_t bits = id < sizeof(flagsCache) ? flagsCache[id] : 0;
|
uint8_t bits = id < sizeof(flagsCache) ? flagsCache[id] : 0;
|
||||||
if ((bits & 0x80) == 0) {
|
if ((bits & 0x80) == 0) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user