1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
package net.minecraft.server;
public class EntityThrownExpBottle extends EntityProjectile {
public EntityThrownExpBottle(World world) {
super(world);
}
public EntityThrownExpBottle(World world, EntityLiving entityliving) {
super(world, entityliving);
}
public EntityThrownExpBottle(World world, double d0, double d1, double d2) {
super(world, d0, d1, d2);
}
protected float g() {
return 0.07F;
}
protected float c() {
return 0.7F;
}
protected float d() {
return -20.0F;
}
protected void a(MovingObjectPosition movingobjectposition) {
if (!this.world.isStatic) {
// CraftBukkit moved after event
// this.world.triggerEffect(2002, (int) Math.round(this.locX), (int) Math.round(this.locY), (int) Math.round(this.locZ), 0);
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()) {
this.world.triggerEffect(2002, (int) Math.round(this.locX), (int) Math.round(this.locY), (int) Math.round(this.locZ), 0);
}
// CraftBukkit end
while (i > 0) {
int j = EntityExperienceOrb.getOrbValue(i);
i -= j;
this.world.addEntity(new EntityExperienceOrb(this.world, this.locX, this.locY, this.locZ, j));
}
this.die();
}
}
}
|