use of com.qouteall.immersive_portals.my_util.IntegerAABBInclusive in project ImmersivePortalsMod by qouteall.
the class NetherPortalGenerator method generatePortalContentBlocks.
private static void generatePortalContentBlocks(ServerWorld world, ObsidianFrame obsidianFrame) {
IntegerAABBInclusive contentBlockArea = obsidianFrame.boxWithoutObsidian;
contentBlockArea.stream().forEach(blockPos -> setPortalContentBlock(world, blockPos, obsidianFrame.normalAxis));
}
Aggregations