2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityExperienceOrb.java
|
|
|
|
+++ b/net/minecraft/server/EntityExperienceOrb.java
|
2015-06-06 11:33:48 +02:00
|
|
|
@@ -1,5 +1,11 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+import org.bukkit.event.entity.EntityTargetLivingEntityEvent;
|
|
|
|
+import org.bukkit.event.entity.EntityTargetEvent;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public class EntityExperienceOrb extends Entity {
|
|
|
|
|
|
|
|
public int a;
|
|
|
|
@@ -34,6 +40,7 @@
|
|
|
|
|
2017-05-14 04:00:00 +02:00
|
|
|
public void B_() {
|
|
|
|
super.B_();
|
2014-11-25 22:32:16 +01:00
|
|
|
+ EntityHuman prevTarget = this.targetPlayer;// CraftBukkit - store old target
|
|
|
|
if (this.c > 0) {
|
|
|
|
--this.c;
|
|
|
|
}
|
2016-06-09 03:43:49 +02:00
|
|
|
@@ -68,6 +75,16 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.targetPlayer != null) {
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ boolean cancelled = false;
|
|
|
|
+ if (this.targetPlayer != prevTarget) {
|
|
|
|
+ EntityTargetLivingEntityEvent event = CraftEventFactory.callEntityTargetLivingEvent(this, targetPlayer, EntityTargetEvent.TargetReason.CLOSEST_PLAYER);
|
|
|
|
+ EntityLiving target = event.getTarget() == null ? null : ((org.bukkit.craftbukkit.entity.CraftLivingEntity) event.getTarget()).getHandle();
|
|
|
|
+ targetPlayer = target instanceof EntityHuman ? (EntityHuman) target : null;
|
|
|
|
+ cancelled = event.isCancelled();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (!cancelled && targetPlayer != null) {
|
2016-06-09 03:43:49 +02:00
|
|
|
double d1 = (this.targetPlayer.locX - this.locX) / 8.0D;
|
|
|
|
double d2 = (this.targetPlayer.locY + (double) this.targetPlayer.getHeadHeight() / 2.0D - this.locY) / 8.0D;
|
|
|
|
double d3 = (this.targetPlayer.locZ - this.locZ) / 8.0D;
|
|
|
|
@@ -80,6 +97,8 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
this.motY += d2 / d4 * d5 * 0.1D;
|
|
|
|
this.motZ += d3 / d4 * d5 * 0.1D;
|
|
|
|
}
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
this.move(EnumMoveType.SELF, this.motX, this.motY, this.motZ);
|
|
|
|
@@ -153,7 +172,7 @@
|
2016-02-29 22:32:46 +01:00
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
if (this.value > 0) {
|
|
|
|
- entityhuman.giveExp(this.value);
|
|
|
|
+ entityhuman.giveExp(CraftEventFactory.callPlayerExpChangeEvent(entityhuman, this.value).getAmount()); // CraftBukkit - this.value -> event.getAmount()
|
|
|
|
}
|
|
|
|
|
|
|
|
this.die();
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -175,6 +194,24 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static int getOrbValue(int i) {
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (i > 162670129) return i - 100000;
|
|
|
|
+ if (i > 81335063) return 81335063;
|
|
|
|
+ if (i > 40667527) return 40667527;
|
|
|
|
+ if (i > 20333759) return 20333759;
|
|
|
|
+ if (i > 10166857) return 10166857;
|
|
|
|
+ if (i > 5083423) return 5083423;
|
|
|
|
+ if (i > 2541701) return 2541701;
|
|
|
|
+ if (i > 1270849) return 1270849;
|
|
|
|
+ if (i > 635413) return 635413;
|
|
|
|
+ if (i > 317701) return 317701;
|
|
|
|
+ if (i > 158849) return 158849;
|
|
|
|
+ if (i > 79423) return 79423;
|
|
|
|
+ if (i > 39709) return 39709;
|
|
|
|
+ if (i > 19853) return 19853;
|
|
|
|
+ if (i > 9923) return 9923;
|
|
|
|
+ if (i > 4957) return 4957;
|
|
|
|
+ // CraftBukkit end
|
|
|
|
return i >= 2477 ? 2477 : (i >= 1237 ? 1237 : (i >= 617 ? 617 : (i >= 307 ? 307 : (i >= 149 ? 149 : (i >= 73 ? 73 : (i >= 37 ? 37 : (i >= 17 ? 17 : (i >= 7 ? 7 : (i >= 3 ? 3 : 1)))))))));
|
|
|
|
}
|
|
|
|
|