mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
33 lines
917 B
Diff
33 lines
917 B
Diff
--- a/net/minecraft/server/EntityShulkerBullet.java
|
|
+++ b/net/minecraft/server/EntityShulkerBullet.java
|
|
@@ -46,8 +46,29 @@
|
|
this.target = entity;
|
|
this.c = EnumDirection.UP;
|
|
this.a(enumdirection_enumaxis);
|
|
+ projectileSource = (org.bukkit.entity.LivingEntity) entityliving.getBukkitEntity(); // CraftBukkit
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ public EntityLiving getShooter() {
|
|
+ return this.shooter;
|
|
+ }
|
|
+
|
|
+ public void setShooter(EntityLiving e) {
|
|
+ this.shooter = e;
|
|
+ }
|
|
+
|
|
+ public Entity getTarget() {
|
|
+ return this.target;
|
|
+ }
|
|
+
|
|
+ public void setTarget(Entity e) {
|
|
+ this.target = e;
|
|
+ this.c = EnumDirection.UP;
|
|
+ this.a(EnumDirection.EnumAxis.X);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
protected void b(NBTTagCompound nbttagcompound) {
|
|
BlockPosition blockposition;
|
|
NBTTagCompound nbttagcompound1;
|