mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-10 20:59:54 +01:00
13 lines
835 B
Diff
13 lines
835 B
Diff
--- a/net/minecraft/server/EntityGhast.java
|
|
+++ b/net/minecraft/server/EntityGhast.java
|
|
@@ -163,7 +163,8 @@
|
|
world.a((EntityHuman) null, 1016, new BlockPosition(this.ghast), 0);
|
|
EntityLargeFireball entitylargefireball = new EntityLargeFireball(world, this.ghast, d2, d3, d4);
|
|
|
|
- entitylargefireball.yield = this.ghast.getPower();
|
|
+ // CraftBukkit - set bukkitYield when setting explosionpower
|
|
+ entitylargefireball.bukkitYield = entitylargefireball.yield = this.ghast.getPower();
|
|
entitylargefireball.setPosition(this.ghast.locX() + vec3d.x * 4.0D, this.ghast.e(0.5D) + 0.5D, entitylargefireball.locZ() + vec3d.z * 4.0D);
|
|
world.addEntity(entitylargefireball);
|
|
this.a = -40;
|