Skip to content
Merged
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 } }
}

-- Workaround for freezer replacement bucket taking priority over bucket recipe in MCL games
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