Create

Create

86M Downloads

Chocolate bucket and honey bucket missing from the creative tab

HwakYuk opened this issue ยท 1 comments

commented

Describe the Bug

Chocolate bucket and honey bucket missing from the creative tab. I'm assuming this is not intended.

Reproduction Steps

  1. Open the inventory in creative mode
  2. Find chocolate bucket and honey bucket
  3. 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

2023-12-03_03 24 17

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.