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

Greetings!

 

There seems to be something strange going on with the OreDictionary name for planks: plankWood.

If you request all ItemStacks for that name, you get an ArrayList with only one element: Oak Wood Planks.

What happened to the rest of the planks? Are they handled differently than other OreDictionary things?

Does vanilla take care of them and am I supposed to make an exception for them?

 

This is the code used:

 

ArrayList<ItemStack> list = OreDictionary.getOres("plankWood");
System.out.println("list size: "+list.size());
for(ItemStack stack : list){
System.out.println(stack.getDisplayName());
}

 

Which produces the following output...

 

list size: 1
Oak Wood Planks

 

Some back info: I came upon this issue because the autocrafting system I made wouldn't use birch planks for crafting a chest.

 

Thanks in advance,

Pancake.

  • Author

The ItemStack will have an item damage of

OreDictionary.WILDCARD_VALUE

which is used in vanilla to mean "any damage value".

 

Thanks for the quick response!

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.