Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hello everyone, i am creating a multiplier item that when registered/the constructor is called, it uses reflections to get all the fields that are an Item or extends Item and creates a shapeless recipe based off it.

I would post this in Stack Overflow but I do not think that they would understand since most of them probably to not create modifications in Forge.

Here is the constructor code:

public ItemMultiplier() {
	GameRegistry.registerItem(this, name);
	setUnlocalizedName(ItemsOStupidity.MODID + ":" + name);
	setCreativeTab(CreativeTabs.tabTools);
	Field[] items0 = Items.class.getFields();
	Field[] items1 = new Field[] {};
	for (Field f : items0) {
		if (f.getType() == Item.class
				|| f.getType().getSuperclass() == Item.class) {
			List<Field> items_list = new LinkedList<Field>(
					Arrays.asList(items1));
			items_list.add(f);
			items1 = items_list.toArray(new Field[items_list.size()]);
		}
	}
	for (Field f : items1) {
		try {
			Item i = (Item) f.get(this);
		} catch (IllegalArgumentException e) {
			e.printStackTrace();
		} catch (IllegalAccessException e) {
			e.printStackTrace();
		}
	}
}

I checked out and only a few items were working with my multiplier class.

What's the problem?

  • Author

Uhm... that's not how you get all Items. Use

Item.itemRegistry

.

That way is possible too, just more laggy though.

  • Author

This is my code now:

public ItemMultiplier() {
	GameRegistry.registerItem(this, name);
	setUnlocalizedName(ItemsOStupidity.MODID + ":" + name);
	setCreativeTab(CreativeTabs.tabTools);
	while(Item.itemRegistry.iterator().hasNext()) {
		Item i = (Item) Item.itemRegistry.iterator().next();
		GameRegistry.addShapelessRecipe(new ItemStack(i, 2), this, i);
	}
}

But now i see the console stuck on this:

[23:09:06] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[23:09:06] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations

and Minecraft has a black screen.

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.