2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityThrownExpBottle.java
|
|
|
|
+++ b/net/minecraft/server/EntityThrownExpBottle.java
|
2016-02-29 22:32:46 +01:00
|
|
|
@@ -20,9 +20,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) {
|
2014-11-25 22:32:16 +01:00
|
|
|
- this.world.triggerEffect(2002, new BlockPosition(this), 0);
|
|
|
|
+ // CraftBukkit - moved to after event
|
|
|
|
+ // this.world.triggerEffect(2002, new BlockPosition(this), 0);
|
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()) {
|
|
|
|
+ this.world.triggerEffect(2002, new BlockPosition(this), 0);
|
|
|
|
+ }
|
|
|
|
+ // 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
|
|
|
|