Compare commits

...

2 commits
2.0.23 ... main

Author SHA1 Message Date
Simon Brodtmann
d4952e2620 Fix graphite recipe icon scale 2025-10-22 23:34:50 +02:00
Simon Brodtmann
1cee258d56 Fix booleans being strings 2025-10-22 23:34:34 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ data:extend({
icons = (util.k2() and icons = (util.k2() and
{ {
{ icon = "__bzcarbon2__/graphics/icons/graphite.png", icon_size = 128}, { icon = "__bzcarbon2__/graphics/icons/graphite.png", icon_size = 128},
{ icon = "__bzcarbon2__/graphics/icons/flake-graphite.png", icon_size = 128, icon_mipmaps = 3, scale=0.25, shift= {-8, -8}}, { icon = "__bzcarbon2__/graphics/icons/flake-graphite.png", icon_size = 128, icon_mipmaps = 3, scale=0.125, shift= {-8, -8}},
} or nil), } or nil),
-- normal = (util.k2() and -- normal = (util.k2() and
-- { -- {

View file

@ -1748,8 +1748,8 @@ function util.replace_ingredients_prior_to(tech, old, new, multiplier)
end end
util.remove_prior_unlocks(tech, old) util.remove_prior_unlocks(tech, old)
for i, recipe in pairs(data.raw.recipe) do for i, recipe in pairs(data.raw.recipe) do
if (recipe.enabled and recipe.enabled ~= 'false') if (recipe.enabled and recipe.enabled ~= false)
and (not recipe.hidden or recipe.hidden == 'true') -- probably don't want to change hidden recipes and (not recipe.hidden or recipe.hidden == true) -- probably don't want to change hidden recipes
and string.sub(recipe.name, 1, 3) ~= 'se-' -- have to exlude SE in general :( and string.sub(recipe.name, 1, 3) ~= 'se-' -- have to exlude SE in general :(
then then
-- log("BZZZ due to 'enabled' replacing " .. old .. " with " .. new .." in " .. recipe.name) -- Handy Debug :| -- log("BZZZ due to 'enabled' replacing " .. old .. " with " .. new .." in " .. recipe.name) -- Handy Debug :|