Skip to content

Instantly share code, notes, and snippets.

@heinrichquirit
Last active December 22, 2015 14:09
Show Gist options
  • Save heinrichquirit/6483628 to your computer and use it in GitHub Desktop.
Save heinrichquirit/6483628 to your computer and use it in GitHub Desktop.
@EventHandler
private void onSmelt(FurnaceSmeltEvent event) {
ItemStack extractedItem = event.getSource();
if (extractedItem.getItemMeta().getDisplayName().equals("Bacon!")) {
event.setResult(customItem(Material.GRILLED_PORK, 1, "Cooked Bacon!"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment