Magical Quarrys


Mine ores without an ore patch.

Content
10 months ago
1.1 - 2.0
1.61K
Logistics Mining Fluids Manufacturing Storage

g Latest version broke with Space Exploration

2 years 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).

2 years ago
(updated 2 years 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

2 years 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

2 years ago
(updated 2 years ago)

Thanks, on my way :)

New response