Posted December 9, 20195 yr package sobbaches.tuto; import net.minecraftforge.fml.common.Mod; @Mod(Tuto.MODID) public class Tuto { public static final String MODID = "tuto"; } package sobbaches.tuto; import static sobbaches.tuto.Items.items; import net.minecraft.item.Item; import net.minecraft.item.ItemGroup; import net.minecraft.item.Rarity; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.registries.IForgeRegistry; @Mod.EventBusSubscriber(modid = Tuto.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) public class TutoEventSubscriber { @SubscribeEvent public static void onRegisterItem(RegistryEvent.Register<Item> event) { items.forEach(item -> item.getCreativeTabs().add(ItemGroup.COMBAT)); items.forEach(event.getRegistry()::registerAll); } } package sobbaches.tuto; import net.minecraft.item.Item; import net.minecraft.item.ItemGroup; import net.minecraft.item.Rarity; import net.minecraft.util.ResourceLocation; import java.util.ArrayList; import java.util.List; public class Items { public static final List<Item> items; static { items = new ArrayList<>(); items.add(new Item(new Item.Properties().rarity(Rarity.EPIC)) .setRegistryName(new ResourceLocation(Tuto.MODID, "test"))); } }
December 9, 20195 yr Author @SubscribeEvent public static void onRegisterItem(RegistryEvent.Register<Item> event) { Item item = new Item(new Item.Properties().rarity(Rarity.EPIC)); item.getCreativeTabs().add(ItemGroup.COMBAT); item.setRegistryName("test"); event.getRegistry().registerAll(item); } I just created item in registry method, but i've got another error.
December 9, 20195 yr Author Problem is solved. The main reason is ItemGroup and I don't have any thoughts about why does it occur the problem
December 9, 20195 yr 1 hour ago, no namezzzz said: items.forEach(event.getRegistry()::registerAll); event.getRegistry().registerAll(items) There is no need to for-each to pass each one individually to a method that accepts a list. Edited December 9, 20195 yr by Draco18s Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.