Paper/nms-patches/EntityThrownExpBottle.patch

23 lines
1.0 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/EntityThrownExpBottle.java
+++ b/net/minecraft/server/EntityThrownExpBottle.java
2016-06-09 03:43:49 +02:00
@@ -24,9 +24,18 @@
protected void a(MovingObjectPosition movingobjectposition) {
2015-02-26 23:41:06 +01:00
if (!this.world.isClientSide) {
2016-11-17 02:41:03 +01:00
- this.world.triggerEffect(2002, new BlockPosition(this), PotionUtil.a(Potions.b));
+ // CraftBukkit - moved to after event
2016-11-17 02:41:03 +01:00
+ // this.world.triggerEffect(2002, new BlockPosition(this), PotionUtil.a(Potions.b));
2015-02-26 23:41:06 +01:00
int i = 3 + this.world.random.nextInt(5) + this.world.random.nextInt(5);
+ // CraftBukkit start
+ org.bukkit.event.entity.ExpBottleEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callExpBottleEvent(this, i);
+ i = event.getExperience();
+ if (event.getShowEffect()) {
2016-11-17 02:41:03 +01:00
+ this.world.triggerEffect(2002, new BlockPosition(this), PotionUtil.a(Potions.b));
+ }
+ // CraftBukkit end
2015-02-26 23:41:06 +01:00
+
while (i > 0) {
int j = EntityExperienceOrb.getOrbValue(i);
2015-02-26 23:41:06 +01:00