Paper/src/main/java/net/minecraft/server/EntitySmallFireball.java

86 Zeilen
2.8 KiB
Java

2011-11-29 08:32:16 +01:00
package net.minecraft.server;
2013-03-25 05:22:32 +01:00
import org.bukkit.event.entity.EntityCombustByEntityEvent; // CraftBukkit
2011-11-29 11:26:55 +01:00
2011-11-29 08:32:16 +01:00
public class EntitySmallFireball extends EntityFireball {
public EntitySmallFireball(World world) {
super(world);
2012-07-29 09:33:13 +02:00
this.a(0.3125F, 0.3125F);
2011-11-29 08:32:16 +01:00
}
public EntitySmallFireball(World world, EntityLiving entityliving, double d0, double d1, double d2) {
super(world, entityliving, d0, d1, d2);
2012-07-29 09:33:13 +02:00
this.a(0.3125F, 0.3125F);
2011-11-29 08:32:16 +01:00
}
2012-03-01 11:49:23 +01:00
public EntitySmallFireball(World world, double d0, double d1, double d2, double d3, double d4, double d5) {
super(world, d0, d1, d2, d3, d4, d5);
2012-07-29 09:33:13 +02:00
this.a(0.3125F, 0.3125F);
2012-03-01 11:49:23 +01:00
}
2011-11-29 08:32:16 +01:00
protected void a(MovingObjectPosition movingobjectposition) {
if (!this.world.isStatic) {
if (movingobjectposition.entity != null) {
2013-07-01 13:03:00 +02:00
if (!movingobjectposition.entity.isFireproof() && movingobjectposition.entity.damageEntity(DamageSource.fireball(this, this.shooter), 5.0F)) {
2013-03-25 05:22:32 +01:00
// CraftBukkit start - Entity damage by entity event + combust event
EntityCombustByEntityEvent event = new EntityCombustByEntityEvent((org.bukkit.entity.Projectile) this.getBukkitEntity(), movingobjectposition.entity.getBukkitEntity(), 5);
movingobjectposition.entity.world.getServer().getPluginManager().callEvent(event);
if (!event.isCancelled()) {
movingobjectposition.entity.setOnFire(event.getDuration());
2011-11-29 11:26:55 +01:00
}
// CraftBukkit end
2011-11-29 08:32:16 +01:00
}
} else {
int i = movingobjectposition.b;
int j = movingobjectposition.c;
int k = movingobjectposition.d;
switch (movingobjectposition.face) {
case 0:
--j;
break;
case 1:
++j;
break;
case 2:
--k;
break;
case 3:
++k;
break;
case 4:
--i;
break;
case 5:
++i;
}
if (this.world.isEmpty(i, j, k)) {
// CraftBukkit start
2013-03-25 05:22:32 +01:00
if (!org.bukkit.craftbukkit.event.CraftEventFactory.callBlockIgniteEvent(world, i, j, k, this).isCancelled()) {
2013-03-13 23:33:27 +01:00
this.world.setTypeIdUpdate(i, j, k, Block.FIRE.id);
}
// CraftBukkit end
2011-11-29 08:32:16 +01:00
}
}
this.die();
}
}
2013-09-19 20:25:08 +02:00
public boolean L() {
2011-11-29 08:32:16 +01:00
return false;
}
2013-07-01 13:03:00 +02:00
public boolean damageEntity(DamageSource damagesource, float f) {
2011-11-29 08:32:16 +01:00
return false;
}
}