Fix CCE from spectral arrows (Fixes #4114)

This commit is contained in:
Shane Freeder 2020-02-04 23:29:51 +00:00
parent 816b64cb70
commit 4eef4a3e41
No known key found for this signature in database
GPG Key ID: A3F61EA5A085289C

View File

@ -221,7 +221,7 @@ public final class CombatUtils {
}
private static void processArcheryCombat(LivingEntity target, Player player, EntityDamageByEntityEvent event, Arrow arrow) {
private static void processArcheryCombat(LivingEntity target, Player player, EntityDamageByEntityEvent event, AbstractArrow arrow) {
double initialDamage = event.getDamage();
McMMOPlayer mcMMOPlayer = UserManager.getPlayer(player);
@ -381,7 +381,7 @@ public final class CombatUtils {
}
}
else if (entityType == EntityType.ARROW || entityType == EntityType.SPECTRAL_ARROW) {
Arrow arrow = (Arrow) damager;
AbstractArrow arrow = (AbstractArrow) damager;
ProjectileSource projectileSource = arrow.getShooter();
if (projectileSource != null && projectileSource instanceof Player && PrimarySkillType.ARCHERY.shouldProcess(target)) {