From 9016c322a00867e7dcbbde294bb2fb4b3fda9c3b Mon Sep 17 00:00:00 2001 From: estralis Date: Sun, 5 Nov 2023 08:59:22 +0100 Subject: [PATCH] Order roasting products by price, see https://discord.com/channels/401855954272124940/1162473874194169947 --- craft/final/roasting.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/craft/final/roasting.lua b/craft/final/roasting.lua index 148e7c579c..c5949f8f17 100644 --- a/craft/final/roasting.lua +++ b/craft/final/roasting.lua @@ -61,9 +61,9 @@ product:addIngredient(2940) -- raw steak catId = roasting:addCategory("Fish", "Fisch") --- Smoked rose fish -product = roasting:addProduct(catId, 3915, 1) -product:addIngredient(1210) -- rose fish +-- Smoked trout +product = roasting:addProduct(catId, 455, 1) +product:addIngredient(73) -- trout -- Smoked salmon product = roasting:addProduct(catId, 3916, 1) @@ -73,9 +73,9 @@ product:addIngredient(355) -- salmon product = roasting:addProduct(catId, 3914, 1) product:addIngredient(1209) -- horse mackerel --- Smoked trout -product = roasting:addProduct(catId, 455, 1) -product:addIngredient(73) -- trout +-- Smoked rose fish +product = roasting:addProduct(catId, 3915, 1) +product:addIngredient(1210) -- rose fish M.roasting = roasting return M