in SingleLevelContainer made void chunks save as 1 byte instead of 8

This commit is contained in:
cola98765
2021-09-21 11:34:07 +02:00
parent 1f5c3f5bd8
commit c6b063a380
@@ -85,8 +85,10 @@ public class SingleLevelContainer implements LevelContainer
if (inputData[index] == 0)
index++;
else if (inputData[index] == 3)
{
newData = 3;
index++;
}
else if (index + 7 >= inputData.length)
break;
else