Put Coal torch craft above charcoal (more convenient)

This commit is contained in:
Tom Smith 2026-03-08 19:35:31 +00:00
parent 9d2eb5c9b0
commit 0e6e5425ad

View file

@ -629,13 +629,11 @@ Recipes::Recipes()
L'#', Item::brick, L'#', Item::brick,
L'D'); L'D');
// torch made of charcoal - moved to be the default due to the tutorial using it
addShapedRecipy(new ItemInstance(Tile::torch, 4), // addShapedRecipy(new ItemInstance(Tile::torch, 4), //
L"ssczcig", L"ssczcig",
L"X", // L"X", //
L"#", // L"#", //
L'X', new ItemInstance(Item::coal, 1, CoalItem::STONE_COAL),//
L'X', new ItemInstance(Item::coal, 1, CoalItem::CHAR_COAL),//
L'#', Item::stick, L'#', Item::stick,
L'T'); L'T');
@ -643,7 +641,8 @@ Recipes::Recipes()
L"ssczcig", L"ssczcig",
L"X", // L"X", //
L"#", // L"#", //
L'X', new ItemInstance(Item::coal, 1, CoalItem::STONE_COAL),//
L'X', new ItemInstance(Item::coal, 1, CoalItem::CHAR_COAL),//
L'#', Item::stick, L'#', Item::stick,
L'T'); L'T');