}
}
// small fireball
if (killer instanceof SmallFireball){
SmallFireball fireball = (SmallFireball) killer;
// check if ghast
if (fireball.getShooter() instanceof Ghast){
message = replacements(config.getString("deathGhast"), victim);
}
// check if blaze
if (fireball.getShooter() instanceof Blaze){
message = replacements(config.getString("deathBlaze"), victim);
}
}
// normal fireball
if (killer instanceof Fireball){
Fireball fireball = (Fireball) killer;
// check if ghast
if (fireball.getShooter() instanceof Ghast){
message = replacements(config.getString("deathGhast"), victim);
}
// check if blaze
if (fireball.getShooter() instanceof Blaze){
message = replacements(config.getString("deathBlaze"), victim);
}
}
if (message != null){