Compare commits

..

No commits in common. "4b691d654c58df784504e56026b96ac43bf7c6ec" and "4de0ae6962ed64dfad71ff7f9a54288c0d4eb79c" have entirely different histories.

2 changed files with 15 additions and 20 deletions

View file

@ -168,11 +168,7 @@ function util.k2matter(params)
},
})
end
if params.k2matter.only_deconversion then
matter.make_deconversion_recipe(params.k2matter)
else
matter.make_recipes(params.k2matter)
end
matter.make_recipes(params.k2matter)
end

View file

@ -1,7 +1,7 @@
-- Matter recipes for Krastorio2
if mods["Krastorio2"] then
local util = require("data-util")
if not data.raw.recipe["kr-gold-ore-to-matter"] then
util.k2matter({
k2matter = {
@ -12,20 +12,19 @@ if mods["Krastorio2"] then
needs_stabilizer = false,
unlocked_by = "gold-matter-processing",
},
icon = { icon = "__bzgold2__/graphics/icons/gold-ore.png", icon_size = 128, scale = 0.5 },
})
end
if settings["bzgold-silver"].value then
util.k2matter({
k2matter = {
material = { type = "item", name = "silver-ore", amount = 8 },
item_name = "silver-ore",
matter_count = 8,
energy_required = 5,
needs_stabilizer = false,
unlocked_by = "silver-matter-processing",
},
icon = { icon = "__bzgold2__/graphics/icons/silver-ore.png", icon_size = 128, scale = 0.5 },
icon = {icon = "__bzgold2__/graphics/icons/gold-ore.png", icon_size = 128, scale = 0.5}
})
end
util.k2matter({
k2matter = {
material = { type = "item", name = "silver-ore", amount = 8 },
item_name = "silver-ore",
matter_count = 8,
energy_required = 5,
needs_stabilizer = false,
unlocked_by = "silver-matter-processing",
},
icon = {icon = "__bzgold2__/graphics/icons/silver-ore.png", icon_size = 128, scale = 0.5}
})
end