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:38:07 -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/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
2024-01-26 20:17:06 +01:00
|
|
|
index 8d09741cbb66ae6f0037f3195c1f1f57850307e4..90930f0f4eb30534c94165079d8c3ad923e6de0e 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
2024-01-26 20:17:06 +01:00
|
|
|
@@ -1471,6 +1471,15 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
2021-06-11 14:02:28 +02:00
|
|
|
*/
|
|
|
|
public void resetPlayerWeather();
|
|
|
|
|
|
|
|
+ // Paper start
|
2023-03-23 22:57:03 +01:00
|
|
|
+ /**
|
|
|
|
+ * Gives the player the amount of experience specified.
|
|
|
|
+ *
|
|
|
|
+ * @param amount Exp amount to give
|
|
|
|
+ */
|
|
|
|
+ public default void giveExp(int amount) {
|
|
|
|
+ giveExp(amount, false);
|
|
|
|
+ }
|
2021-06-11 14:02:28 +02:00
|
|
|
/**
|
2023-05-12 13:10:08 +02:00
|
|
|
* Gets the player's cooldown between picking up experience orbs.
|
|
|
|
*
|
2024-01-26 20:17:06 +01:00
|
|
|
@@ -1496,8 +1505,20 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
2021-06-11 14:02:28 +02:00
|
|
|
* Gives the player the amount of experience specified.
|
|
|
|
*
|
|
|
|
* @param amount Exp amount to give
|
2023-03-23 22:57:03 +01:00
|
|
|
+ * @param applyMending Mend players items with mending, with same behavior as picking up orbs. calls {@link #applyMending(int)}
|
2021-06-11 14:02:28 +02:00
|
|
|
*/
|
|
|
|
- public void giveExp(int amount);
|
|
|
|
+ public void giveExp(int amount, boolean applyMending);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Applies the mending effect to any items just as picking up an orb would.
|
|
|
|
+ *
|
|
|
|
+ * Can also be called with {@link #giveExp(int, boolean)} by passing true to applyMending
|
|
|
|
+ *
|
|
|
|
+ * @param amount Exp to apply
|
|
|
|
+ * @return the remaining experience
|
|
|
|
+ */
|
|
|
|
+ public int applyMending(int amount);
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gives the player the amount of experience levels specified. Levels can
|