mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-13 11:15:57 -07:00
Update to Minecraft 1.13-pre7
This commit is contained in:
@@ -15,14 +15,13 @@
|
||||
+ public float bukkitYield = 1; // CraftBukkit
|
||||
+ public boolean isIncendiary = true; // CraftBukkit
|
||||
|
||||
public EntityFireball(World world) {
|
||||
super(world);
|
||||
@@ -31,12 +35,19 @@
|
||||
public EntityFireball(World world, EntityLiving entityliving, double d0, double d1, double d2) {
|
||||
super(world);
|
||||
protected EntityFireball(EntityTypes<?> entitytypes, World world, float f, float f1) {
|
||||
super(entitytypes, world);
|
||||
@@ -28,11 +32,18 @@
|
||||
public EntityFireball(EntityTypes<?> entitytypes, EntityLiving entityliving, double d0, double d1, double d2, World world, float f, float f1) {
|
||||
this(entitytypes, world, f, f1);
|
||||
this.shooter = entityliving;
|
||||
+ this.projectileSource = (org.bukkit.entity.LivingEntity) entityliving.getBukkitEntity(); // CraftBukkit
|
||||
this.setSize(1.0F, 1.0F);
|
||||
this.setPositionRotation(entityliving.locX, entityliving.locY, entityliving.locZ, entityliving.yaw, entityliving.pitch);
|
||||
this.setPosition(this.locX, this.locY, this.locZ);
|
||||
this.motX = 0.0D;
|
||||
@@ -37,7 +36,7 @@
|
||||
d0 += this.random.nextGaussian() * 0.4D;
|
||||
d1 += this.random.nextGaussian() * 0.4D;
|
||||
d2 += this.random.nextGaussian() * 0.4D;
|
||||
@@ -61,6 +72,12 @@
|
||||
@@ -59,6 +70,12 @@
|
||||
|
||||
if (movingobjectposition != null) {
|
||||
this.a(movingobjectposition);
|
||||
@@ -50,19 +49,19 @@
|
||||
}
|
||||
|
||||
this.locX += this.motX;
|
||||
@@ -150,6 +167,11 @@
|
||||
@@ -146,6 +163,11 @@
|
||||
} else {
|
||||
this.ax();
|
||||
this.aA();
|
||||
if (damagesource.getEntity() != null) {
|
||||
+ // CraftBukkit start
|
||||
+ if (CraftEventFactory.handleNonLivingEntityDamageEvent(this, damagesource, f)) {
|
||||
+ return false;
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
Vec3D vec3d = damagesource.getEntity().aJ();
|
||||
Vec3D vec3d = damagesource.getEntity().aN();
|
||||
|
||||
if (vec3d != null) {
|
||||
@@ -163,6 +185,7 @@
|
||||
@@ -159,6 +181,7 @@
|
||||
|
||||
if (damagesource.getEntity() instanceof EntityLiving) {
|
||||
this.shooter = (EntityLiving) damagesource.getEntity();
|
||||
|
Reference in New Issue
Block a user