Krumb069
Nether Yerlisi
- En iyi cevaplar
- 1
Kod böyle eclipsede hata yok ancak çalışmıyor oyunda konsolda da hata yok neden olabilir ?
Kod:
@EventHandler
public void okMobacarptinca(EntityDamageByEntityEvent e){
if (e.getDamager() instanceof Arrow){
Arrow ok = (Arrow) e.getDamager();
if(ok.getShooter() instanceof Player){
LivingEntity vurulan = (LivingEntity) e.getEntity();
vurulan.addPotionEffect(new PotionEffect(PotionEffectType.POISON, 0, 5));
}
}
}