The error in question:
Code: Select all
Error ModManager.cpp:1733: Error while loading recipe prototype "stacked-copper-plate" (recipe): Key "icon" not found in property tree at ROOT.recipe.stacked-steel-plate
Modifications: Deadlock Experimental Stacking
Code: Select all
local stacked_cable = {
type = "recipe",
name = "stacked-copper-cable",
normal = {
enabled = false,
energy_required = 0.5 * cable_density,
ingredients = {{"deadlock-stack-copper-plate", 1}},
results = {{"deadlock-stack-copper-cable",2}},
},
expensive = {
enabled = false,
energy_required = 0.5 * cable_density,
ingredients = {{"deadlock-stack-copper-plate", 1}},
results = {{"deadlock-stack-copper-cable",2}},
},
}
As it turns out, normal/expensive has been removed, so the actual error is that those are defined, and not the missing icon itself. Once I replaced it with just the contents of the normal section, the icon error went away.
So it'd be great if the error was something along the lines of normal/expensive sections being defined, instead of something that seems completely different from a user perspective.