From c8ee2c6bf1c34cf429fda76266193781a9bf69d0 Mon Sep 17 00:00:00 2001 From: p2r3 Date: Thu, 21 Aug 2025 12:51:59 +0300 Subject: [PATCH] make torches craftable with charcoal --- src/crafting.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crafting.c b/src/crafting.c index 1442d44..20898b2 100644 --- a/src/crafting.c +++ b/src/crafting.c @@ -55,6 +55,7 @@ void getCraftingOutput (PlayerData *player, uint8_t *count, uint16_t *item) { return; } break; + case I_charcoal: case I_coal: if (first_row != 2 && player->craft_items[first + 3] == I_stick) { *item = I_torch;