Resized
The Resized modification is an adaptation for Minecraft version 1.19.2 of the original oversized mod, which provides the ability to create crafting tables of increased sizes.
API Installation
To connect the mod to your project, you need to perform the following steps:
Add the repository to the build.gradle file:
repositories {
maven {url 'https://jitpack.io'}
}
Include the following line in the dependencies block:
modImplementation "com.github.vaylor27:resized:fwhiu"
Creating a Crafting Table
To create a crafting table block, use your standard block registration method, passing in:
new OversizedCraftingTableBlock(FabricBlockSettings.of(Material.WOOD), ((blockState, world, blockPos) -> new Pair<>(WIDTH, HEIGHT)))
This construction allows you to configure the width and height of the created crafting table according to your needs.