Creative inventory
frederic-orlando opened this issue ยท 5 comments
Any vanilla items and blocks are missing from creative inventory
I have tried :
- clean install (no mods) + cardinal, working fine
- modded + cardinal, missing items and blocks
- modded without cardinal, working fine
Here is my mod list (from console)
https://pastebin.com/1iBhgzfC
I've looked into this issue, and wasn't able to reproduce it yet.
It seems to be some mod-specific issue.
Can't seem to reproduce, is there any chance you can find exactly with which mod(s) it starts breaking ?
This happens when you load Item
early which loads ItemGroup
. When ItemGroup
loads, it loads Item
, CC makes Item
load Items
. Items
tries to initialize all the builtin items, but it can't load any Item groups because those are being loaded as a parent. I am skipping a few steps here because I last debugged this a while ago, but the fix is just to make sure you don't load Item
until it is ready. How I fixed it: https://gitea.thebrokenrail.com/TheBrokenRail/EnergonRelics/commit/fbb1020ce8bcb35e277d593cadf9452319a1ce7f
If cardinal-components-item
's eager loading is the issue, I have good news: it should be fixed in the latest version. Could you confirm maybe ?