Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
25 Zeilen
1003 B
Diff
25 Zeilen
1003 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: GodOfPro <1387ilia@gmail.com>
|
|
Date: Tue, 11 Apr 2023 16:30:58 +0430
|
|
Subject: [PATCH] Add Mob Experience reward API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Mob.java b/src/main/java/org/bukkit/entity/Mob.java
|
|
index d55250d820b02f3a23b99a59e68d3361698baddf..256e5645bcfa76e7ede58ae365e69b4a4bed6204 100644
|
|
--- a/src/main/java/org/bukkit/entity/Mob.java
|
|
+++ b/src/main/java/org/bukkit/entity/Mob.java
|
|
@@ -220,4 +220,13 @@ public interface Mob extends LivingEntity, Lootable {
|
|
*/
|
|
public void setLeftHanded(boolean leftHanded);
|
|
// Paper end - left-handed API
|
|
+
|
|
+ // Paper start - mob xp reward API
|
|
+ /**
|
|
+ * Gets the amount of experience the mob will possibly drop. This value is randomized and it can give different results
|
|
+ *
|
|
+ * @return the amount of experience the mob will possibly drop
|
|
+ */
|
|
+ public int getPossibleExperienceReward();
|
|
+ // Paper end - mob xp reward API
|
|
}
|