Hello,
Some player reported a bug with my mod and yours : https://mods.factorio.com/mod/vtk-deep-core-mining/discussion/650138a9ed1cbceac47f3a69
After some analysis this is because the molybdenum mining result doesn't have the name field declared excplicitly as expected :
in pyfusionenergy_2.0.6\prototypes\ore\molybdenum.lua
minable = {
-- mining_particle = "molybdenum-ore-particle",
mining_time = 3,
results = {
{"molybdenum-ore", 1}
}
},
the fix would be :
minable = {
-- mining_particle = "molybdenum-ore-particle",
mining_time = 3,
results = {
{
type = "item",
name="molybdenum-ore",
amount = 1
}
}
},
I see that in some other ore entity are defined as such like in pyfusionenergy_2.0.6\prototypes\ore\regolites.lua
I guess this was an older factorio entity format that must be retrocompatible in the game engine. Would be great if you could change it so other mod don't have to add this kind of retro compatibility.
Thanks !