Chocolate bucket and honey bucket missing from the creative tab
HwakYuk opened this issue ยท 1 comments
Describe the Bug
Chocolate bucket and honey bucket missing from the creative tab. I'm assuming this is not intended.
Reproduction Steps
- Open the inventory in creative mode
- Find chocolate bucket and honey bucket
- One can find them only in search tab but with no category assigned
...
Expected Result
They should be visible in Create tab
Screenshots and Videos
Crash Report or Log
No response
Operating System
Windows 11
Mod Version
0.5.1f
Minecraft Version
1.20.1
Forge Version
47.2.0
Other Mods
None
Additional Context
They are added incorrectly to PALETTES_CREATIVE_TAB
rather than BASE_CREATIVE_TAB
because of static ctor order. In turn, the RegistrateDisplayItemsGenerator
of PALETTES_CREATIVE_TAB
makes them invisible. (Nevertheless they are added to search tab by tterrag's registrate.)
Adding
static {
REGISTRATE.setCreativeTab(AllCreativeModeTabs.BASE_CREATIVE_TAB);
}
on top of AllFluids
class fixes it.