2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 20 Dec 2017 17:36:49 -0500
|
|
|
|
Subject: [PATCH] Ability to apply mending to XP API
|
|
|
|
|
|
|
|
This allows plugins that give players the ability to apply the experience
|
|
|
|
points to the Item Mending formula, which will repair an item instead
|
|
|
|
of giving the player experience points.
|
|
|
|
|
|
|
|
Both an API To standalone mend, and apply mending logic to .giveExp has been added.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/item/enchantment/EnchantmentHelper.java b/src/main/java/net/minecraft/world/item/enchantment/EnchantmentHelper.java
|
2021-07-07 08:52:40 +02:00
|
|
|
index 6f25e9f41d93a225acaa6575954967438a6cabbf..d439e8ce87bf7da03683a336941c7673b8b166e4 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/item/enchantment/EnchantmentHelper.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/item/enchantment/EnchantmentHelper.java
|
2021-07-07 08:52:40 +02:00
|
|
|
@@ -270,8 +270,11 @@ public class EnchantmentHelper {
|
2021-06-11 14:02:28 +02:00
|
|
|
return getItemEnchantmentLevel(Enchantments.CHANNELING, stack) > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
- @Nullable
|
|
|
|
- public static Entry<EquipmentSlot, ItemStack> getRandomItemWith(Enchantment enchantment, LivingEntity entity) {
|
2021-06-17 21:52:26 +02:00
|
|
|
+ @Deprecated public static @javax.annotation.Nonnull ItemStack getRandomEquippedItemWithEnchant(Enchantment enchantment, LivingEntity entityliving) {
|
2021-06-12 18:56:13 +02:00
|
|
|
+ Entry<EquipmentSlot, ItemStack> entry = getRandomItemWith(enchantment, entityliving);
|
|
|
|
+ return entry != null ? entry.getValue() : ItemStack.EMPTY;
|
|
|
|
+ } // Paper - OBFHELPER
|
2021-06-11 14:02:28 +02:00
|
|
|
+ @Nullable public static Entry<EquipmentSlot, ItemStack> getRandomItemWith(Enchantment enchantment, LivingEntity entity) {
|
2021-06-12 17:06:20 +02:00
|
|
|
return getRandomItemWith(enchantment, entity, (stack) -> {
|
2021-06-11 14:02:28 +02:00
|
|
|
return true;
|
|
|
|
});
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
|
2021-07-18 09:41:53 +02:00
|
|
|
index 284772518ecb00d9e83a9e22480842deeba47dd0..18f061f96d5c4da2c0dbd4bce1f1a7f1ee1cd62f 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
|
2021-06-12 17:06:20 +02:00
|
|
|
@@ -61,11 +61,14 @@ import net.minecraft.server.level.ServerPlayer;
|
2021-06-11 14:02:28 +02:00
|
|
|
import net.minecraft.server.network.ServerGamePacketListenerImpl;
|
|
|
|
import net.minecraft.server.players.UserWhiteListEntry;
|
|
|
|
import net.minecraft.world.entity.Entity;
|
|
|
|
+import net.minecraft.world.entity.ExperienceOrb;
|
|
|
|
import net.minecraft.world.entity.LivingEntity;
|
|
|
|
import net.minecraft.world.entity.ai.attributes.AttributeInstance;
|
|
|
|
import net.minecraft.world.entity.ai.attributes.AttributeMap;
|
|
|
|
import net.minecraft.world.entity.ai.attributes.Attributes;
|
|
|
|
import net.minecraft.world.inventory.AbstractContainerMenu;
|
|
|
|
+import net.minecraft.world.item.enchantment.EnchantmentHelper;
|
|
|
|
+import net.minecraft.world.item.enchantment.Enchantments;
|
|
|
|
import net.minecraft.world.level.GameType;
|
2021-06-12 17:06:20 +02:00
|
|
|
import net.minecraft.world.level.block.Blocks;
|
2021-06-11 14:02:28 +02:00
|
|
|
import net.minecraft.world.level.block.entity.SignBlockEntity;
|
2021-07-12 21:42:17 +02:00
|
|
|
@@ -1203,8 +1206,37 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
2021-06-12 17:06:20 +02:00
|
|
|
return GameMode.getByValue(this.getHandle().gameMode.getGameModeForPlayer().getId());
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
2021-06-12 17:06:20 +02:00
|
|
|
+ @Override
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public int applyMending(int amount) {
|
|
|
|
+ ServerPlayer handle = getHandle();
|
|
|
|
+ // Logic copied from EntityExperienceOrb and remapped to unobfuscated methods/properties
|
|
|
|
+ net.minecraft.world.item.ItemStack itemstack = EnchantmentHelper.getRandomEquippedItemWithEnchant(Enchantments.MENDING, handle);
|
|
|
|
+ if (!itemstack.isEmpty() && itemstack.getItem().canBeDepleted()) {
|
|
|
|
+
|
|
|
|
+ ExperienceOrb orb = net.minecraft.world.entity.EntityType.EXPERIENCE_ORB.create(handle.level);
|
|
|
|
+ orb.value = amount;
|
|
|
|
+ orb.spawnReason = org.bukkit.entity.ExperienceOrb.SpawnReason.CUSTOM;
|
|
|
|
+ orb.setPosRaw(handle.getX(), handle.getY(), handle.getZ());
|
|
|
|
+
|
2021-06-17 19:11:00 +02:00
|
|
|
+ int i = Math.min(orb.xpToDurability(amount), itemstack.getDamageValue());
|
2021-06-11 14:02:28 +02:00
|
|
|
+ org.bukkit.event.player.PlayerItemMendEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerItemMendEvent(handle, orb, itemstack, i);
|
|
|
|
+ i = event.getRepairAmount();
|
2021-06-12 18:56:13 +02:00
|
|
|
+ orb.discard();
|
2021-06-11 14:02:28 +02:00
|
|
|
+ if (!event.isCancelled()) {
|
2021-06-17 19:11:00 +02:00
|
|
|
+ amount -= orb.durabilityToXp(i);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ itemstack.setDamageValue(itemstack.getDamageValue() - i);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return amount;
|
|
|
|
+ }
|
|
|
|
+
|
2021-06-12 17:06:20 +02:00
|
|
|
@Override
|
|
|
|
- public void giveExp(int exp) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public void giveExp(int exp, boolean applyMending) {
|
|
|
|
+ if (applyMending) {
|
|
|
|
+ exp = this.applyMending(exp);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2021-06-12 17:06:20 +02:00
|
|
|
this.getHandle().giveExperiencePoints(exp);
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|