Skip to content

Instantly share code, notes, and snippets.

@Dockter
Created September 19, 2017 03:42
Show Gist options
  • Save Dockter/ea324d3aeceb9a9f7289af3a3eeec0dd to your computer and use it in GitHub Desktop.
Save Dockter/ea324d3aeceb9a9f7289af3a3eeec0dd to your computer and use it in GitHub Desktop.
@Override
public void getSubBlocks(CreativeTabs tab, NonNullList<ItemStack> list) {
for (int i = 0; i < numSubBlocks; i++) {
ItemStack item = new ItemStack(this,1,i);
System.out.println("SGCraft: Item: " + item.getDisplayName());
list.add(item);
}
// Update: may be incorrect, needs testing.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment