mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-04 18:01:17 +01:00
814c742554
Discussion ongoing in PR #449
21 lines
896 B
Diff
21 lines
896 B
Diff
--- a/net/minecraft/server/EntityIllagerIllusioner.java
|
|
+++ b/net/minecraft/server/EntityIllagerIllusioner.java
|
|
@@ -164,7 +164,7 @@
|
|
}
|
|
|
|
protected void j() {
|
|
- EntityIllagerIllusioner.this.getGoalTarget().addEffect(new MobEffect(MobEffects.BLINDNESS, 400));
|
|
+ EntityIllagerIllusioner.this.getGoalTarget().addEffect(new MobEffect(MobEffects.BLINDNESS, 400), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ATTACK); // CraftBukkit
|
|
}
|
|
|
|
protected SoundEffect k() {
|
|
@@ -199,7 +199,7 @@
|
|
}
|
|
|
|
protected void j() {
|
|
- EntityIllagerIllusioner.this.addEffect(new MobEffect(MobEffects.INVISIBILITY, 1200));
|
|
+ EntityIllagerIllusioner.this.addEffect(new MobEffect(MobEffects.INVISIBILITY, 1200), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ILLUSION); // CraftBukkit
|
|
}
|
|
|
|
@Nullable
|