Minecraft: Hunger Games Game #49.5- Never Before seen Clips!
-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
Don't you have your own DeferredRegister that contains your items? public static final DeferredRegister<Item> MY_ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, MODID); then for (RegistryObject<Item> itemRegistration : MY_ITEMS.getEntries()) { var item = itemRegistration.get(); // do stuff } You also have the issue that you are adding every item to every tab. You need to check: event.getTab() is the tab you want.
-
If the mod is not called fabrication or maybe c_tweaks. I don't know. The mod author hasn't named their mixin file in a standard way so we don't know which mod it is. You could use a zip program to look inside each mod jar and see which has a "fabrication.mixins.json" file.
-
I started a server with Bisect Hosting and I imported the mods I'm using from curse forge onto there but I can't craft modded items. Crafting vanilla works also when i look at the REI on the right it shows the item but when I click on the item it does not show the recipe. Please help.
-
By LyricCrayon8311 · Posted
The following code worked but added all minecraft blocks and items to my creative tab. for (Item item : ForgeRegistries.ITEMS.getValues()) { if (new ItemStack(item.asItem()).getCount() == 1) { event.accept(item.asItem()); } } Is there any way I can filter them out?
-
-
Topics
-
Who's Online (See full list)
Recommended Posts
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.