return air instead of reserved on get blocks

This commit is contained in:
SirYwell
2021-12-26 19:51:32 +01:00
parent 040a011ff1
commit 07695786ca
2 changed files with 8 additions and 18 deletions

View File

@ -896,7 +896,7 @@ public class PaperweightGetBlocks extends CharGetBlocks implements BukkitGetBloc
final BitStorage bits = (BitStorage) PaperweightPlatformAdapter.fieldStorage.get(dataObject);
if (bits instanceof ZeroBitStorage) {
Arrays.fill(data, (char) 0);
Arrays.fill(data, (char) 1);
return data;
}