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 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
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));
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // 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);
|
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // 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));
|
2014-11-25 22:32:16 +01:00
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
while (i > 0) {
|
|
|
|
int j = EntityExperienceOrb.getOrbValue(i);
|
2015-02-26 23:41:06 +01:00
|
|
|
|