Skip to content

Commit

Permalink
Order roasting products by price, see https://discord.com/channels/40…
Browse files Browse the repository at this point in the history
  • Loading branch information
estralis committed Nov 5, 2023
1 parent 4ae20d3 commit 9016c32
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions craft/final/roasting.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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

0 comments on commit 9016c32

Please sign in to comment.