mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
Teach EnderDragon how to throw EntityDamage events
Relates to BUKKIT-129
This commit is contained in:
parent
b1a3aa602a
commit
bf60f44013
@ -1,5 +1,9 @@
|
|||||||
package net.minecraft.server;
|
package net.minecraft.server;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.event.entity.EntityDamageByEntityEvent;
|
||||||
|
import org.bukkit.event.entity.EntityDamageEvent;
|
||||||
|
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -388,7 +392,19 @@ public class EntityEnderDragon extends EntityComplex {
|
|||||||
Entity entity = (Entity) list.get(i);
|
Entity entity = (Entity) list.get(i);
|
||||||
|
|
||||||
if (entity instanceof EntityLiving) {
|
if (entity instanceof EntityLiving) {
|
||||||
entity.damageEntity(DamageSource.mobAttack(this), 10);
|
// CraftBukkit start - throw damage events when the dragon attacks
|
||||||
|
// The EntityHuman case is handled in EntityHuman, so don't throw it here
|
||||||
|
if (!(entity instanceof EntityHuman)) {
|
||||||
|
EntityDamageByEntityEvent damageEvent = new EntityDamageByEntityEvent(this.getBukkitEntity(), entity.getBukkitEntity(), EntityDamageEvent.DamageCause.ENTITY_ATTACK, 10);
|
||||||
|
Bukkit.getPluginManager().callEvent(damageEvent);
|
||||||
|
|
||||||
|
if (!damageEvent.isCancelled()) {
|
||||||
|
entity.damageEntity(DamageSource.mobAttack(this), damageEvent.getDamage());
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
entity.damageEntity(DamageSource.mobAttack(this), 10);
|
||||||
|
}
|
||||||
|
// CraftBukkit end
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user