fix(TU31): update stone blocks

This commit is contained in:
piebot 2026-04-26 16:13:06 +03:00
parent 8159e7690b
commit 990a74dcf1
3 changed files with 13 additions and 13 deletions

View file

@ -30,7 +30,7 @@ FurnaceRecipes::FurnaceRecipes()
addFurnaceRecipy(Item::fish_raw_Id, new ItemInstance(Item::fish_cooked), .35f);
addFurnaceRecipy(new ItemInstance(Item::fish_raw, 1, 1), new ItemInstance(Item::fish_cooked, 1, 1), .35f); // salmon
addFurnaceRecipy(Tile::cobblestone_Id, new ItemInstance(Tile::stone), .1f);
addFurnaceRecipy(Tile::cobblestone_Id, new ItemInstance(Tile::stone, 1, 0), .1f);
addFurnaceRecipy(Tile::stoneBrick_Id, new ItemInstance(Tile::stoneBrick, 1 , SmoothStoneBrickTile::TYPE_CRACKED), .1f);
addFurnaceRecipy(Item::clay_Id, new ItemInstance(Item::brick), .3f);
addFurnaceRecipy(Tile::clay_Id, new ItemInstance(Tile::clayHardened), .35f);

View file

@ -571,10 +571,10 @@ Recipes::Recipes()
L'S');
addShapedRecipy(new ItemInstance(Tile::stoneSlabHalf, 6, StoneSlabTile::STONE_SLAB), //
L"sctg",
L"sczg",
L"###", //
L'#', Tile::stone,
L'#', new ItemInstance(Tile::stone, 1, 0),
L'S');
addShapedRecipy(new ItemInstance(Tile::stoneSlabHalf, 6, StoneSlabTile::COBBLESTONE_SLAB), //
L"sctg",
@ -912,20 +912,20 @@ Recipes::Recipes()
L'M');
addShapedRecipy(new ItemInstance(Item::repeater, 1), //
L"ssctcictg",
L"ssctciczg",
L"#X#", //
L"III", //
L'#', Tile::redstoneTorch_on, L'X', Item::redStone, L'I', Tile::stone,
L'#', Tile::redstoneTorch_on, L'X', Item::redStone, L'I', new ItemInstance(Tile::stone, 1, 0),
L'M');
addShapedRecipy(new ItemInstance(Item::comparator, 1), //
L"sssctcictg",
L"sssctciczg",
L" # ", //
L"#X#", //
L"III", //
L'#', Tile::redstoneTorch_on, L'X', Item::netherQuartz, L'I', Tile::stone,
L'#', Tile::redstoneTorch_on, L'X', Item::netherQuartz, L'I', new ItemInstance(Tile::stone, 1, 0),
L'M');
addShapedRecipy(new ItemInstance(Tile::daylightDetector),
@ -998,10 +998,10 @@ Recipes::Recipes()
L'T');
addShapedRecipy(new ItemInstance(Tile::button, 1), //
L"sctg",
L"sczg",
L"#", //
L'#', Tile::stone,
L'#', new ItemInstance(Tile::stone, 1, 0),
L'M');
addShapedRecipy(new ItemInstance(Tile::button_wood, 1), //
@ -1018,9 +1018,9 @@ Recipes::Recipes()
L'M');
addShapedRecipy(new ItemInstance(Tile::pressurePlate_stone, 1), //
L"sctg",
L"scg",
L"##", //
L'#', Tile::stone,
L'#', new ItemInstance(Tile::stone, 1, 0),
L'M');
addShapedRecipy(new ItemInstance(Tile::weightedPlate_heavy, 1), //

View file

@ -124,11 +124,11 @@ void StructureRecipies::addRecipes(Recipes *r)
L'S');
r->addShapedRecipy(new ItemInstance(Tile::stoneBrick, 4), //
L"ssctg",
L"ssczg",
L"##", //
L"##", //
L'#', Tile::stone,
L'#', new ItemInstance(Tile::stone, 1, 0),
L'S');
r->addShapedRecipy(new ItemInstance(Tile::stoneBrick, 1, SmoothStoneBrickTile::TYPE_DETAIL), //
L"ssczg",