Ad Astra

Ad Astra

22M Downloads

[Bug]: Can't find cable/pipe in creative tab/JEI

gisellevonbingen opened this issue ยท 3 comments

commented

Bug Description

cable, pipe items are surely exist.
but cant found in creative tab and jei.

image

image

How to Reproduce?

  1. Update Ad-Astra to 1.19.2-1.12.3
  2. Join world and search cable/pipe items.

Expected Behavior

No response

Version

1.12.3

Mod Loader Version

1.19.2-43.2.4

Mod Loader

Forge

Logs or additional context

No response

commented

That items looks not assigned ItemGroup. in f6ad92f

public static final RegistryEntry<Item> STEEL_CABLE = ITEMS.register("steel_cable", () -> new BlockItem(ModBlocks.STEEL_CABLE.get(), new Item.Properties()));
public static final RegistryEntry<Item> DESH_CABLE = ITEMS.register("desh_cable", () -> new BlockItem(ModBlocks.DESH_CABLE.get(), new Item.Properties()));
public static final RegistryEntry<Item> DESH_FLUID_PIPE = ITEMS.register("desh_fluid_pipe", () -> new BlockItem(ModBlocks.DESH_FLUID_PIPE.get(), new Item.Properties()));
public static final RegistryEntry<Item> OSTRUM_FLUID_PIPE = ITEMS.register("ostrum_fluid_pipe", () -> new BlockItem(ModBlocks.OSTRUM_FLUID_PIPE.get(), new Item.Properties()));
public static final RegistryEntry<Item> CABLE_DUCT = ITEMS.register("cable_duct", () -> new BlockItem(ModBlocks.CABLE_DUCT.get(), new Item.Properties()));
public static final RegistryEntry<Item> FLUID_PIPE_DUCT = ITEMS.register("fluid_pipe_duct", () -> new BlockItem(ModBlocks.FLUID_PIPE_DUCT.get(), new Item.Properties()));

commented

oh, yeah it's because that was backported from 1.19.3 where it doesn't exist any more so I forgot to re-add it to the tabs on 1.19.2

commented

will be fixed in next update