Magical Quarrys


Mine ores without an ore patch.

Content
a month ago
1.1 - 2.0
1.21K
Logistics Mining Fluids Manufacturing Storage

g Latest version broke with Space Exploration

1 year, 5 months ago

The .3 version broke the game with Space Exploration.

"Error in assignID: item with name 'raw-wood' does not exist"
Source: quarry-wood (recipe).

1 year, 5 months ago
(updated 1 year, 5 months ago)

Correction I just checked the code and did a "fix"(Just did a change so it loaded the recipe with wood if the mod space-exploration was loaded) which did not work, since the graphics icon is looking for base raw-wood, which does not exist, but wood does

1 year, 5 months ago

So change this in prototypes.recipe.lua:
"{

    type = "recipe",
    name = "quarry-wood",
    category = "quarry",
    ingredients = {},
    icon = "__base__/graphics/icons/raw-wood.png",
    icon_size = 32,
    order = "a",
    subgroup = "raw-resource",
    result = "raw-wood",
    result_count = 10,
}

"
to this:
"
{

    type = "recipe",
    name = "quarry-wood",
    category = "quarry",
    ingredients = {},
    icon = "__base__/graphics/icons/wood.png",
    icon_size = 32,
    order = "a",
    subgroup = "raw-resource",
    result = "wood",
    result_count = 10,
}

"
and it works again

1 year, 5 months ago
(updated 1 year, 5 months ago)

Thanks, on my way :)

New response