Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion technic/machines/register/freezer_recipes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ local recipes = {
{mat.bucket_lava, { mat.obsidian, mat.bucket_empty } }
}

-- HACK! See issue #430 and PR #328 for more details.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
-- HACK! See issue #430 and PR #328 for more details.
-- Workaround for freezer replacement bucket taking priority over bucket recipe in MineClon* games
-- https://github.com/mt-mods/technic/pull/328#issuecomment-1793461832

local hidden = core.get_modpath("mcl_core") and true or nil

for _, data in pairs(recipes) do
technic.register_freezer_recipe({input = {data[1]}, output = data[2], hidden = true})
technic.register_freezer_recipe({input = {data[1]}, output = data[2], hidden = hidden})
end

Loading