From b39e03fff7bc29e0f03be122eb2a94d2c69ce93e Mon Sep 17 00:00:00 2001 From: Adrien Vidal Date: Wed, 17 Sep 2025 21:47:46 +0200 Subject: [PATCH] Texture fixes + slab to wall chiseling (#1857) --- kubejs/server_scripts/tfg/recipes.rocks.js | 3 +++ kubejs/startup_scripts/tfg/blocks.js | 2 +- kubejs/startup_scripts/tfg/blocks.space.js | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/kubejs/server_scripts/tfg/recipes.rocks.js b/kubejs/server_scripts/tfg/recipes.rocks.js index 48c7e2824..bf8bbf986 100644 --- a/kubejs/server_scripts/tfg/recipes.rocks.js +++ b/kubejs/server_scripts/tfg/recipes.rocks.js @@ -652,6 +652,9 @@ function registerTFGRockRecipes(event) { .category(GTRecipeCategories.MACERATOR_RECYCLING) } } + if (x.slab != null && x.wall != null) { + event.recipes.tfc.chisel(x.wall, x.slab, 'smooth') + } if (x.loose != null) { event.shapeless(`4x ${x.loose}`, [x.raw]) diff --git a/kubejs/startup_scripts/tfg/blocks.js b/kubejs/startup_scripts/tfg/blocks.js index 278e1f022..e5f9c7218 100644 --- a/kubejs/startup_scripts/tfg/blocks.js +++ b/kubejs/startup_scripts/tfg/blocks.js @@ -271,7 +271,7 @@ const registerTFGBlocks = (event) => { SHAPES.forEach(shape => { event.create(`tfg:rock/cracked_bricks_stone_${shape}`, shape) .soundType('stone') - .textureAll('minecraft:block/smooth_stone') + .textureAll('minecraft:block/cracked_stone_bricks') .tagBoth(`tfg:brick_${shape}s`.replace(/ss/g, 's')) .mapColor('stone') .tagBlock('minecraft:mineable/pickaxe') diff --git a/kubejs/startup_scripts/tfg/blocks.space.js b/kubejs/startup_scripts/tfg/blocks.space.js index 1fd535691..815f56d5c 100644 --- a/kubejs/startup_scripts/tfg/blocks.space.js +++ b/kubejs/startup_scripts/tfg/blocks.space.js @@ -1296,7 +1296,7 @@ function registerTFGSpaceBlocks(event) { // #region Sandstone event.create('tfg:rock/smooth_red_sandstone_wall', 'wall') .soundType('stone') - .textureAll('minecraft:block/smooth_red_sandstone') + .textureAll('minecraft:block/red_sandstone_top') .mapColor('teracotta_red') .tagBlock('minecraft:mineable/pickaxe') .fullBlock(true)