Jump to content

xndir

Members
  • Posts

    1
  • Joined

  • Last visited

  • Days Won

    1

xndir last won the day on November 11 2024

xndir had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

xndir's Achievements

Tree Puncher

Tree Puncher (2/8)

1

Reputation

  1. Fabric explains it a bit here, Forge needs to provide a guide for 1.21.3 since the examples are Fabric specific: https://fabricmc.net/2024/10/14/1212.html EDIT: This seems to work but I don't know if this is the proper way to do it. Truly an annoying change especially if you have lots of items and blocks: Old: public static final RegistryObject<Item> ITEM_EGG = ITEMS.register("egg", () -> new Item(new Item.Properties())); New: ITEM_EGG = ITEMS.register("egg", () -> new Item(new Item.Properties().useItemDescriptionPrefix().setId(ResourceKey.create(Registries.ITEM, ResourceLocation.parse("modid:egg"))))); Neo also has more on the topic: https://neoforged.net/news/21.2release/
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.