3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 13:00:06 +01:00
Paper/nms-patches/EntityGhast.patch

13 Zeilen
858 B
Diff

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/EntityGhast.java
+++ b/net/minecraft/server/EntityGhast.java
2019-06-21 12:00:00 +02:00
@@ -167,7 +167,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;
2019-04-23 04:00:00 +02:00
entitylargefireball.locY = this.ghast.locY + (double) (this.ghast.getHeight() / 2.0F) + 0.5D;
2016-06-09 03:43:49 +02:00
entitylargefireball.locZ = this.ghast.locZ + vec3d.z * 4.0D;