[2.0.39] How fixed?? It's a bug??

Place to get help with not working mods / modding interface.
User avatar
yaim904
Fast Inserter
Fast Inserter
Posts: 101
Joined: Wed Nov 17, 2021 11:26 pm
Contact:

[2.0.39] How fixed?? It's a bug??

Post by yaim904 »

I have version 2.0.39, here is the code I'm using and the images
I am creating alternative recipes and have created the recipes for the other objects, but only with this one the problem occurs.

Code: Select all

--- --- --- --- --- --- --- --- --- --- --- --- --- ---
---> data.lua
--- --- --- --- --- --- --- --- --- --- --- --- --- ---

local function DeepCopy(value)
    if type(value) ~= "table" then return value end
    local Output = {}
    for Key, Value in pairs(value) do
        Output[Key] = DeepCopy(Value)
    end
    return Output
end

local name = "iron-gear-wheel"
-- local name = "iron-plate"

local item = data.raw.item[name]
item = DeepCopy(item)
item.name = "zzzYAIM904-" .. item.name
item.localised_name = { "", {"item-name." .. name }}

local recipe = data.raw.recipe[name]
recipe = DeepCopy(recipe)
recipe.name = "zzzYAIM904-" .. recipe.name
recipe.localised_name = { "", {"item-name." .. name }}
recipe.category = nil
recipe.ingredients = { {
    type = "item",
    name = item.name,
    amount = 1
} }
recipe.results = { {
    type = "item",
    name = name,
    amount = 1000
} }

data:extend({ item, recipe })

Without the alternative recipe
I have enough iron plates to build conveyor belts and burner inserter.
Captura de pantalla (1).png
Captura de pantalla (1).png (1.11 MiB) Viewed 325 times
Captura de pantalla (2).png
Captura de pantalla (2).png (1.1 MiB) Viewed 325 times
With the alternative recipe
inserters what?
Captura de pantalla (3).png
Captura de pantalla (3).png (1.11 MiB) Viewed 325 times
Captura de pantalla (4).png
Captura de pantalla (4).png (1.11 MiB) Viewed 325 times
How fixed??
It's a bug??
Last edited by yaim904 on Thu Mar 13, 2025 1:39 am, edited 3 times in total.
Solo entiendo español, pero si tu también lo entiendes, escríbeme
:D
Everything i write in English is translated by Deepl.
:D
Muche
Smart Inserter
Smart Inserter
Posts: 1006
Joined: Fri Jun 02, 2017 6:20 pm
Contact:

Re: [2.0.39] How fixed?? It's a bug??

Post by Muche »

It seems the manual crafter has decided to favor your recipe for crafting an iron gear instead of the default one.
As there is no recipe for crafting your gear, an iron gear is not craftable as well.

Adding recipe.allow_as_intermediate = false will skip considering the recipe for manual crafting.
User avatar
yaim904
Fast Inserter
Fast Inserter
Posts: 101
Joined: Wed Nov 17, 2021 11:26 pm
Contact:

Re: [2.0.39] How fixed?? It's a bug??

Post by yaim904 »

This message has been deleted by the author
Last edited by yaim904 on Thu Mar 13, 2025 1:13 am, edited 2 times in total.
Solo entiendo español, pero si tu también lo entiendes, escríbeme
:D
Everything i write in English is translated by Deepl.
:D
User avatar
yaim904
Fast Inserter
Fast Inserter
Posts: 101
Joined: Wed Nov 17, 2021 11:26 pm
Contact:

Re: [2.0.39] How fixed?? It's a bug??

Post by yaim904 »

Muche wrote: Wed Mar 12, 2025 8:15 pm
Thank you, but that does not solve the problem, it evades it, but does not solve it.

With iron plates it works without any problem.
Captura de pantalla (16).png
Captura de pantalla (16).png (1.02 MiB) Viewed 229 times

I am looking for everything to work the same way.

The result of the recipe should be included in the other recipes, as seen in the image.

I mean, if you exchange the object for the iron plates and another object, you won't have that problem.
Why?
It's a bug?
Solo entiendo español, pero si tu también lo entiendes, escríbeme
:D
Everything i write in English is translated by Deepl.
:D
User avatar
yaim904
Fast Inserter
Fast Inserter
Posts: 101
Joined: Wed Nov 17, 2021 11:26 pm
Contact:

Re: [2.0.39] How fixed?? It's a bug??

Post by yaim904 »

I think I have made some progress on this issue.

I am now using this code, which works fine with all objects in the game, except iron gears.

This code is NOT FUNCTIONAL, it is only for reference.

Code: Select all

    --- Contenedor de las recetas
    GPrefix.addDataRaw({
        { type = "recipe-category", name = ThisMOD.Prefix .. ThisMOD.Do },
        { type = "recipe-category", name = ThisMOD.Prefix .. ThisMOD.Undo }
    })

    --- Cargar los subgrupos a duplicar
    local Subgroups = {}
    for _, item in pairs(GPrefix.Items) do
        Subgroups[item.subgroup] = {}
    end

    --- Crear los subgrupo de los objetos compactados
    for oldSubgroup, _ in pairs(Subgroups) do
        for i = 1, 2, 1 do
            --- Cambiar el nombre del nuevo subgrupo
            local Name     = i == 1 and ThisMOD.Do or ThisMOD.Undo
            Name           = GPrefix.DeletePrefix(oldSubgroup) .. "-" .. Name
            Name           = ThisMOD.Prefix .. Name
            local Subgroup = GPrefix.DuplicateSubgroup(oldSubgroup, false, Name)
        end
    end

    local Table = {
        "name",
        "subgroup",
        "order",
        "inventory_move_sound",
        "pick_sound",
        "drop_sound",
        "localised_name",
        "localised_description",
        "icons"
    }

    -- table.insert(ThisMOD.AvoidItem, "iron-gear-wheel")

    for name, item in pairs(GPrefix.Items) do
        if GPrefix.getKey(item.flags, "not-stackable") then goto JumpItem end
        if GPrefix.getKey(ThisMOD.AvoidType, item.type) then goto JumpItem end
        if GPrefix.getKey(ThisMOD.AvoidItem, item.name) then goto JumpItem end
        if string.find(name, "zzzYAIM904") then return end





        local Item = {}
        for _, key in pairs(Table) do
            Item[key] = GPrefix.DeepCopy(item[key])
        end

        Item.name       = "zzzYAIM904-" .. Item.name
        Item.type       = "item"
        Item.stack_size = ThisMOD.StackSize
        Item.subgroup   = ThisMOD.Prefix .. GPrefix.DeletePrefix(Item.subgroup) .. "-" .. ThisMOD.Do

        table.insert(Item.icons, 1, ThisMOD.Graphics.Background)





        local URecipe               = {}
        URecipe.type                = "recipe"
        URecipe.name                = "zzzYAIM904-u-" .. name
        URecipe.localised_name      = GPrefix.DeepCopy(Item.localised_name)
        URecipe.icons               = GPrefix.DeepCopy(item.icons)
        URecipe.category            = ThisMOD.Prefix .. ThisMOD.Undo
        URecipe.allow_decomposition = false
        URecipe.ingredients         = { { type = "item", name = Item.name, amount = 1 } }
        URecipe.results             = { { type = "item", name = name, amount = ThisMOD.Ingredients } }
        URecipe.subgroup            = ThisMOD.Prefix .. GPrefix.DeletePrefix(item.subgroup) .. "-" .. ThisMOD.Undo

        table.insert(URecipe.icons, ThisMOD.Graphics.ArrowU)





        local DRecipe                 = {}
        DRecipe.type                  = "recipe"
        DRecipe.name                  = "zzzYAIM904-" .. name
        DRecipe.localised_name        = GPrefix.DeepCopy(Item.localised_name)
        DRecipe.icons                 = GPrefix.DeepCopy(item.icons)
        DRecipe.category              = ThisMOD.Prefix .. ThisMOD.Do
        DRecipe.allow_decomposition   = false
        DRecipe.allow_as_intermediate = false
        DRecipe.results               = { { type = "item", name = Item.name, amount = 1 } }
        DRecipe.ingredients           = { { type = "item", name = name, amount = ThisMOD.Ingredients } }
        DRecipe.subgroup              = ThisMOD.Prefix .. GPrefix.DeletePrefix(item.subgroup) .. "-" .. ThisMOD.Do

        table.insert(DRecipe.icons, ThisMOD.Graphics.ArrowD)





        GPrefix.addDataRaw({ Item, DRecipe, URecipe })





        GPrefix.addRecipeToTechnology(item.name, URecipe)
        GPrefix.addRecipeToTechnology(item.name, DRecipe)





        :: JumpItem ::
    end

    --- --- --- --- --- --- --- --- --- --- --- --- --- ---
    ---> Permirte la descompresión sin la maquina
    --- --- --- --- --- --- --- --- --- --- --- --- --- ---

    table.insert(data.raw["character"].character.crafting_categories, ThisMOD.Prefix .. ThisMOD.Undo)
    table.insert(data.raw["god-controller"].default.crafting_categories, ThisMOD.Prefix .. ThisMOD.Undo)
And it generated a doubt, how do I add a crafting category to the recipes that players can create with their hands?

I tried with this line, but it doesn't work.

Code: Select all

table.insert(data.raw["character"].character.crafting_categories, ThisMOD.Prefix .. ThisMOD.Undo)
03-13-2025, 18-14-03.png
03-13-2025, 18-14-03.png (726.95 KiB) Viewed 162 times
Solo entiendo español, pero si tu también lo entiendes, escríbeme
:D
Everything i write in English is translated by Deepl.
:D
User avatar
yaim904
Fast Inserter
Fast Inserter
Posts: 101
Joined: Wed Nov 17, 2021 11:26 pm
Contact:

Re: [2.0.39] How fixed?? It's a bug??

Post by yaim904 »

Update
This is the simplified and FUNCTIONAL example code, it still has the error, and I still don't know why it doesn't work not with the gears but with the other objects.

Code: Select all

    --- --- --- --- --- --- --- --- --- --- --- --- --- ---
    ---> data.lua
    --- --- --- --- --- --- --- --- --- --- --- --- --- ---

    local function DeepCopy(value)
        if type(value) ~= "table" then return value end
        local Output = {}
        for Key, Value in pairs(value) do
            Output[Key] = DeepCopy(Value)
        end
        return Output
    end

    -- local name = "iron-gear-wheel"
    local name = "iron-plate"

    local Item = data.raw.item[name]
    Item = DeepCopy(Item)
    Item.name = "zzzYAIM904-" .. Item.name
    Item.localised_name = { "", "YAIM904 ", { "item-name." .. name } }

    local URecipe = data.raw.recipe[name]
    URecipe = DeepCopy(URecipe)
    URecipe.name = "zzzYAIM904-u-" .. URecipe.name
    URecipe.localised_name = { "", { "item-name." .. name } }
    URecipe.category = nil
    URecipe.ingredients = { {
        type = "item",
        name = Item.name,
        amount = 1
    } }
    URecipe.results = { {
        type = "item",
        name = name,
        amount = 1000
    } }

    local DRecipe = data.raw.recipe[name]
    DRecipe = DeepCopy(DRecipe)
    DRecipe.name = "zzzYAIM904-" .. DRecipe.name
    DRecipe.localised_name = { "", "YAIM904 ", { "item-name." .. name } }
    DRecipe.category = nil
    DRecipe.results = { {
        type = "item",
        name = Item.name,
        amount = 1
    } }
    DRecipe.ingredients = { {
        type = "item",
        name = name,
        amount = 1000
    } }

    data:extend({ Item, DRecipe, URecipe })

With iron plates
03-13-2025, 18-58-34.png
03-13-2025, 18-58-34.png (1023.46 KiB) Viewed 146 times
03-13-2025, 18-58-42.png
03-13-2025, 18-58-42.png (1019.37 KiB) Viewed 146 times
03-13-2025, 19-04-27.png
03-13-2025, 19-04-27.png (1 MiB) Viewed 146 times
With iron gear wheel
03-13-2025, 19-00-16.png
03-13-2025, 19-00-16.png (1013.77 KiB) Viewed 146 times
03-13-2025, 19-00-25.png
03-13-2025, 19-00-25.png (1.03 MiB) Viewed 146 times
03-13-2025, 19-02-52.png
03-13-2025, 19-02-52.png (1.01 MiB) Viewed 146 times
Description
Try the code, and see for yourself.
When using gears, you cannot create transport belts and incertators.
When using any other item, no problem.
How fixed??
It's a bug??
Maybe I'm not making myself clear, but I'm willing to answer as many questions as it takes to arrive at a solution.
Solo entiendo español, pero si tu también lo entiendes, escríbeme
:D
Everything i write in English is translated by Deepl.
:D
Post Reply

Return to “Modding help”