Bunch of changes to help masks

This commit is contained in:
dordsor21
2020-07-02 22:09:12 +01:00
parent 18c9da372c
commit f1d4104480
7 changed files with 51 additions and 6 deletions

View File

@ -27,7 +27,7 @@ public abstract class CharGetBlocks extends CharBlocks implements IChunkGet {
public char[] update(int layer, char[] data) {
if (data == null) {
return new char[4096];
data = new char[4096];
}
Arrays.fill(data, (char) 1);
return data;