3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-20 13:30:05 +01:00
Paper/src/main/java/net/minecraft/server/EntitySmallFireball.java

100 Zeilen
3.3 KiB
Java

2011-11-29 08:32:16 +01:00
package net.minecraft.server;
2011-11-29 11:26:55 +01:00
// CraftBukkit start
import org.bukkit.Bukkit;
2011-11-29 11:26:55 +01:00
import org.bukkit.entity.Projectile;
import org.bukkit.event.entity.EntityCombustByEntityEvent;
import org.bukkit.event.entity.ProjectileHitEvent;
import org.bukkit.plugin.PluginManager;
// CraftBukkit end
2011-11-29 08:32:16 +01:00
public class EntitySmallFireball extends EntityFireball {
public EntitySmallFireball(World world) {
super(world);
this.b(0.3125F, 0.3125F);
}
public EntitySmallFireball(World world, EntityLiving entityliving, double d0, double d1, double d2) {
super(world, entityliving, d0, d1, d2);
this.b(0.3125F, 0.3125F);
}
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);
this.b(0.3125F, 0.3125F);
}
2011-11-29 08:32:16 +01:00
protected void a(MovingObjectPosition movingobjectposition) {
if (!this.world.isStatic) {
2011-11-29 11:26:55 +01:00
// CraftBukkit start - projectile hit event
Projectile projectile = (Projectile) this.getBukkitEntity();
ProjectileHitEvent phe = new ProjectileHitEvent(projectile);
final PluginManager pluginManager = Bukkit.getPluginManager();
2011-11-29 11:26:55 +01:00
pluginManager.callEvent(phe);
// CraftBukkit end
final Entity movingEntity = movingobjectposition.entity;
if (movingEntity != null) {
2011-11-29 11:26:55 +01:00
// CraftBukkit start - entity damage by entity event + combust event
if (!movingEntity.isFireproof()) { // check if not fireproof
org.bukkit.entity.Entity damagee = movingEntity.getBukkitEntity();
2011-11-29 11:26:55 +01:00
if (org.bukkit.craftbukkit.event.CraftEventFactory.handleProjectileEvent(projectile, movingobjectposition.entity, DamageSource.projectile(this, this.shooter), 0)) {
2011-11-29 11:26:55 +01:00
// if the fireball 'sticks', ignite the target
EntityCombustByEntityEvent combustEvent = new EntityCombustByEntityEvent(projectile, damagee, 5);
pluginManager.callEvent(combustEvent);
if (!combustEvent.isCancelled()) {
movingEntity.setOnFire(combustEvent.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)) {
this.world.setTypeId(i, j, k, Block.FIRE.id);
}
}
this.die();
}
}
2012-03-01 11:49:23 +01:00
public boolean o_() {
2011-11-29 08:32:16 +01:00
return false;
}
public boolean damageEntity(DamageSource damagesource, int i) {
return false;
}
}