Paper/nms-patches/EntityShulkerBullet.patch

34 lines
1.1 KiB
Diff
Raw Normal View History

2016-02-29 22:32:46 +01:00
--- a/net/minecraft/server/EntityShulkerBullet.java
+++ b/net/minecraft/server/EntityShulkerBullet.java
2020-06-25 02:00:00 +02:00
@@ -34,8 +34,21 @@
2016-02-29 22:32:46 +01:00
this.target = entity;
2019-04-23 04:00:00 +02:00
this.dir = EnumDirection.UP;
2016-02-29 22:32:46 +01:00
this.a(enumdirection_enumaxis);
+ projectileSource = (org.bukkit.entity.LivingEntity) entityliving.getBukkitEntity(); // CraftBukkit
}
+ // CraftBukkit start
+ public Entity getTarget() {
+ return this.target;
+ }
+
+ public void setTarget(Entity e) {
+ this.target = e;
2019-04-23 04:00:00 +02:00
+ this.dir = EnumDirection.UP;
+ this.a(EnumDirection.EnumAxis.X);
+ }
+ // CraftBukkit end
+
2019-04-23 04:00:00 +02:00
@Override
public SoundCategory getSoundCategory() {
2018-07-15 02:00:00 +02:00
return SoundCategory.HOSTILE;
2020-06-25 02:00:00 +02:00
@@ -255,7 +268,7 @@
if (flag) {
this.a(entityliving, entity);
if (entity instanceof EntityLiving) {
- ((EntityLiving) entity).addEffect(new MobEffect(MobEffects.LEVITATION, 200));
+ ((EntityLiving) entity).addEffect(new MobEffect(MobEffects.LEVITATION, 200), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ATTACK); // CraftBukkit
}
2020-06-25 02:00:00 +02:00
}