More warnings addressed

This commit is contained in:
cola98765
2021-09-20 13:31:16 +02:00
parent af3c4ab801
commit 29ed26f023
2 changed files with 9 additions and 13 deletions
@@ -882,14 +882,10 @@ public class LodBuilder
}
}
if (blockState.getBlock() != Blocks.AIR
&& blockState.getBlock() != Blocks.CAVE_AIR
&& blockState.getBlock() != Blocks.BARRIER)
{
return true;
}
return blockState.getBlock() != Blocks.AIR
&& blockState.getBlock() != Blocks.CAVE_AIR
&& blockState.getBlock() != Blocks.BARRIER;
}
return false;
}
}