Slope recipe is missing
EzerArch opened this issue ยท 1 comments
The slope is implemented but missing its recipe. So it's uncraftable on survival.
You can add Crafttweaker and create an arbitrarily named file (with .zs extension, e.g. "carpenter.zs") in the scripts folder with the following content:
val slope = <carpentersblocks:carpenters_slope>;
val block = <carpentersblocks:carpenters_block>;
val stick = <ore:stickWood>;
recipes.addShapedMirrored("slope_x", slope * 6,
[
[stick, null , null ],
[block, stick, null ],
[block, block, stick]
]
);
slope.displayName = "Carpenter's Slope";