remove likely useless code breaking buildSkipBlocks

This commit is contained in:
ZacSharp 2021-01-13 22:45:59 +01:00
parent 7988274d61
commit dba186347c
No known key found for this signature in database
GPG Key ID: 9453647B005083A3
1 changed files with 0 additions and 2 deletions

View File

@ -44,8 +44,6 @@ public class FillSchematic extends AbstractSchematic {
public IBlockState desiredState(int x, int y, int z, IBlockState current, List<IBlockState> approxPlaceable) {
if (bom.matches(current)) {
return current;
} else if (current.getBlock() != Blocks.AIR) {
return Blocks.AIR.getDefaultState();
}
for (IBlockState placeable : approxPlaceable) {
if (bom.matches(placeable)) {