Works better than before, but still some issues remaining
36.160 Error ModManager.cpp:1767: Error in assignID: item with name 'foliax-fluorine-barrel' does not exist. It was removed by TIMSABA.
I mentioned that in the previous branch, 3rd post, and included the fix for it.
51.639 Error ModManager.cpp:1767: Error in assignID: item with name 'tiny-solar-matrix' does not exist. It was removed by TIMSABA.
Source: item-tiny-solar-matrix-panglia_crushing (recipe).
That's similar to the issue in the previous version, but seems to be a different recipe now.
50.673 Error ModManager.cpp:1767: Error in assignID: item with name 'tiny-bio-solar-panel' does not exist. It was removed by TIMSABA.
Source: item-tiny-bio-solar-panel-panglia_crushing (recipe).
And then a whole bunch of solars...
53.065 Error ModManager.cpp:1767: Error in assignID: item with name 'tiny-solar-matrix' does not exist. It was removed by TIMSABA.
Source: sp-1-tiny-solar-matrix (solar-panel).
51.233 Error ModManager.cpp:1767: Error in assignID: item with name 'tiny-solar-matrix' does not exist. It was removed by TIMSABA.
Source: sp-2-tiny-solar-matrix (solar-panel).
The sp-*-tiny-* series goes all the way up to 50
...
Source: sp-49-tiny-solar-matrix (solar-panel).
Source: sp-50-tiny-solar-matrix (solar-panel).
51.128 Error ModManager.cpp:1767: Error in assignID: item with name 'tiny-bio-solar-panel' does not exist. It was removed by TIMSABA.
Source: sp-1-tiny-bio-solar-panel (solar-panel).
52.538 Error ModManager.cpp:1767: Error in assignID: item with name 'tiny-bio-solar-panel' does not exist. It was removed by TIMSABA.
Source: sp-2-tiny-bio-solar-panel (solar-panel).
also up to 50
...
Source: sp-49-tiny-bio-solar-panel (solar-panel).
Source: sp-50-tiny-bio-solar-panel (solar-panel).
Same here, similar to the previous errors, different recipes. This time I didn't track down which mod these are coming from but I'm guessing panglia and tiny solars.
I used this to work around the issue:
data_recipe["item-tiny-solar-matrix-panglia_crushing"] = nil
data_recipe["item-tiny-bio-solar-panel-panglia_crushing"] = nil
for num = 1,50,1 do
data.raw["solar-panel"]["sp-" .. num .. "-tiny-solar-matrix"] = nil
end
for num = 1,50,1 do
data.raw["solar-panel"]["sp-" .. num .. "-tiny-bio-solar-panel"] = nil
end