From 0e6e5425ad28392f6871180eff0f35a8a82ec3e2 Mon Sep 17 00:00:00 2001 From: Tom Smith Date: Sun, 8 Mar 2026 19:35:31 +0000 Subject: [PATCH] Put Coal torch craft above charcoal (more convenient) --- Minecraft.World/Recipes.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Minecraft.World/Recipes.cpp b/Minecraft.World/Recipes.cpp index ce0263591..137b5a248 100644 --- a/Minecraft.World/Recipes.cpp +++ b/Minecraft.World/Recipes.cpp @@ -629,13 +629,11 @@ Recipes::Recipes() L'#', Item::brick, L'D'); - // torch made of charcoal - moved to be the default due to the tutorial using it addShapedRecipy(new ItemInstance(Tile::torch, 4), // L"ssczcig", L"X", // L"#", // - - L'X', new ItemInstance(Item::coal, 1, CoalItem::CHAR_COAL),// + L'X', new ItemInstance(Item::coal, 1, CoalItem::STONE_COAL),// L'#', Item::stick, L'T'); @@ -643,7 +641,8 @@ Recipes::Recipes() L"ssczcig", L"X", // 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'T');