2019-07-20 06:01:24 +02:00
|
|
|
From af6cb20df0f7dcebfd2b343029e087749c1cc4c3 Mon Sep 17 00:00:00 2001
|
2017-11-11 05:04:06 +01:00
|
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Fri, 10 Nov 2017 23:03:12 -0500
|
|
|
|
Subject: [PATCH] Option for maximum exp value when merging orbs
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index 4d0d4cbe4e..b3d8fe9c68 100644
|
2017-11-11 05:04:06 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-07-03 22:44:07 +02:00
|
|
|
@@ -333,4 +333,10 @@ public class PaperWorldConfig {
|
2018-07-19 06:42:43 +02:00
|
|
|
disableCreeperLingeringEffect = getBoolean("disable-creeper-lingering-effect", false);
|
|
|
|
log("Creeper lingering effect: " + disableCreeperLingeringEffect);
|
2017-11-11 05:04:06 +01:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int expMergeMaxValue;
|
|
|
|
+ private void expMergeMaxValue() {
|
|
|
|
+ expMergeMaxValue = getInt("experience-merge-max-value", -1);
|
|
|
|
+ log("Experience Merge Max Value: " + expMergeMaxValue);
|
|
|
|
+ }
|
|
|
|
}
|
2018-12-17 06:18:06 +01:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index af1be62e2b..715a4acef8 100644
|
2018-12-17 06:18:06 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
2019-05-27 12:57:28 +02:00
|
|
|
@@ -529,16 +529,32 @@ public class CraftEventFactory {
|
2017-11-11 05:04:06 +01:00
|
|
|
EntityExperienceOrb xp = (EntityExperienceOrb) entity;
|
2018-12-17 06:18:06 +01:00
|
|
|
double radius = world.spigotConfig.expMerge;
|
2017-11-11 05:04:06 +01:00
|
|
|
if (radius > 0) {
|
|
|
|
+ // Paper start - Maximum exp value when merging - Whole section has been tweaked, see comments for specifics
|
2018-12-17 06:18:06 +01:00
|
|
|
+ final int maxValue = world.paperConfig.expMergeMaxValue;
|
|
|
|
+ final boolean mergeUnconditionally = world.paperConfig.expMergeMaxValue <= 0;
|
2017-11-14 02:30:45 +01:00
|
|
|
+ if (mergeUnconditionally || xp.value < maxValue) { // Paper - Skip iteration if unnecessary
|
2017-11-11 05:04:06 +01:00
|
|
|
+
|
2018-12-17 06:18:06 +01:00
|
|
|
List<Entity> entities = world.getEntities(entity, entity.getBoundingBox().grow(radius, radius, radius));
|
2017-11-11 05:04:06 +01:00
|
|
|
for (Entity e : entities) {
|
|
|
|
if (e instanceof EntityExperienceOrb) {
|
|
|
|
EntityExperienceOrb loopItem = (EntityExperienceOrb) e;
|
|
|
|
- if (!loopItem.dead) {
|
2018-08-03 06:06:20 +02:00
|
|
|
- xp.value += loopItem.value;
|
|
|
|
- loopItem.die();
|
|
|
|
+ // Paper start
|
|
|
|
+ if (!loopItem.dead && !(maxValue > 0 && loopItem.value >= maxValue)) {
|
|
|
|
+ long newTotal = (long)xp.value + (long)loopItem.value;
|
2018-08-04 02:59:35 +02:00
|
|
|
+ if ((int) newTotal < 0) continue; // Overflow
|
|
|
|
+ if (maxValue > 0 && newTotal > (long)maxValue) {
|
|
|
|
+ loopItem.value = (int) (newTotal - maxValue);
|
2017-11-11 05:04:06 +01:00
|
|
|
+ xp.value = maxValue;
|
2018-08-03 06:06:20 +02:00
|
|
|
+ } else {
|
|
|
|
+ xp.value += loopItem.value;
|
|
|
|
+ loopItem.die();
|
2017-11-11 05:04:06 +01:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ } // Paper end - End iteration skip check - All tweaking ends here
|
|
|
|
}
|
2019-01-01 04:15:55 +01:00
|
|
|
// Spigot end
|
2019-03-27 19:41:12 +01:00
|
|
|
} else if (!(entity instanceof EntityPlayer)) {
|
2017-11-11 05:04:06 +01:00
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2017-11-11 05:04:06 +01:00
|
|
|
|