Paper/nms-patches/EntityGhast.patch

13 lines
853 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/EntityGhast.java
+++ b/net/minecraft/server/EntityGhast.java
2018-07-15 02:00:00 +02:00
@@ -154,7 +154,8 @@
2016-02-29 22:32:46 +01:00
world.a((EntityHuman) null, 1016, new BlockPosition(this.ghast), 0);
EntityLargeFireball entitylargefireball = new EntityLargeFireball(world, this.ghast, d2, d3, d4);
2015-02-26 23:41:06 +01:00
2016-02-29 22:32:46 +01:00
- entitylargefireball.yield = this.ghast.getPower();
2015-02-26 23:41:06 +01:00
+ // CraftBukkit - set bukkitYield when setting explosionpower
2016-02-29 22:32:46 +01:00
+ entitylargefireball.bukkitYield = entitylargefireball.yield = this.ghast.getPower();
2016-06-09 03:43:49 +02:00
entitylargefireball.locX = this.ghast.locX + vec3d.x * 4.0D;
2016-02-29 22:32:46 +01:00
entitylargefireball.locY = this.ghast.locY + (double) (this.ghast.length / 2.0F) + 0.5D;
2016-06-09 03:43:49 +02:00
entitylargefireball.locZ = this.ghast.locZ + vec3d.z * 4.0D;