Describe the bug
in your data-final-fixes, (on line 230 as of writing) you have this code:
subgroup = "casting-" .. item.subgroup,
one issue with this is that some mods don't add their item subgroups until their data-final-fixes (such as maraxsis)
A quick fix would be doing something like this for the line:
subgroup = "casting-" .. (item.subgroup or 'some default value'),
Idk if you want to do that, but either way, bug reported.
Describe the bug
in your data-final-fixes, (on line 230 as of writing) you have this code:
subgroup = "casting-" .. item.subgroup,one issue with this is that some mods don't add their item subgroups until their data-final-fixes (such as maraxsis)
A quick fix would be doing something like this for the line:
subgroup = "casting-" .. (item.subgroup or 'some default value'),Idk if you want to do that, but either way, bug reported.