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

Hi,

I'm asking for your help because I can't figure out how to make it so that when an item is crafted on the Crafting Table, it returns the item to the player's inventory and makes the item lose durability. I've tried looking everywhere without success.

Like for the crafting of the cake which returns the empty bucket to the player, but also makes it lose durability.

 

Edited by Xemnys

  • Author

Update: I managed to make the item not disappear after crafting, but it doesn't remove any durability.

import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.enchantment.Enchantments;
import net.minecraft.enchantment.UnbreakingEnchantment;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;

public class NuggetHammer extends Item
{
	private boolean damage;

	public NuggetHammer(Properties p_i48487_1_) 
	{
		super(p_i48487_1_);
	}

	@Override
    public int getMaxDamage(ItemStack stack) 
	{
        return 54 - 1;
    }

    public boolean isBarVisible(ItemStack stack) 
    {
        return false;
    }
	
	@Override
	public ItemStack getContainerItem(ItemStack stack) 
	{
		ItemStack copy = stack.copy();
		copy.setCount(1);

		if (!this.damage)
			return copy;

		int unbreaking = EnchantmentHelper.getItemEnchantmentLevel(Enchantments.UNBREAKING, stack);
		for (int i = 0; i < unbreaking; i++) 
		{
			if (UnbreakingEnchantment.shouldIgnoreDurabilityDrop(stack, unbreaking, random))
				return copy;
		}

		copy.setDamageValue(stack.getDamageValue() + 1);

		if (copy.getDamageValue() > stack.getMaxDamage())
			return ItemStack.EMPTY;

		return copy;
	}
}

 

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.