summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/EntityThrownExpBottle.java
diff options
context:
space:
mode:
authorThinkofdeath <thinkofdeath@spigotmc.org>2014-11-26 08:32:16 +1100
committermd_5 <git@md-5.net>2014-11-28 17:16:30 +1100
commit24557bc2b37deb6a0edf497d547471832457b1dd (patch)
treec560572889a3b0b34964a0cddb35dc87fda3c914 /src/main/java/net/minecraft/server/EntityThrownExpBottle.java
parenta4805dbd77da057cc1ea0bf344379bc6e53ca1f6 (diff)
downloadcraftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.gz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.lz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.xz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.zip
Update to Minecraft 1.8
For more information please see http://www.spigotmc.org/
Diffstat (limited to 'src/main/java/net/minecraft/server/EntityThrownExpBottle.java')
-rw-r--r--src/main/java/net/minecraft/server/EntityThrownExpBottle.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/main/java/net/minecraft/server/EntityThrownExpBottle.java b/src/main/java/net/minecraft/server/EntityThrownExpBottle.java
deleted file mode 100644
index 68625a48..00000000
--- a/src/main/java/net/minecraft/server/EntityThrownExpBottle.java
+++ /dev/null
@@ -1,53 +0,0 @@
-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 i() {
- return 0.07F;
- }
-
- protected float e() {
- return 0.7F;
- }
-
- protected float f() {
- return -20.0F;
- }
-
- protected void a(MovingObjectPosition movingobjectposition) {
- if (!this.world.isStatic) {
- // CraftBukkit - moved to 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();
- }
- }
-}