PaperSpigot-Parent/CraftBukkit-Patches/0094-Cancellable-WitherSkul...

41 lines
2.0 KiB
Diff
Raw Normal View History

2015-02-26 11:40:16 +01:00
From 77438a1939346d53bed1c6f42498f5070089251e Mon Sep 17 00:00:00 2001
From: drXor <mcyoungsota@gmail.com>
Date: Tue, 25 Feb 2014 15:15:26 -0400
Subject: [PATCH] Cancellable WitherSkull potion effect
diff --git a/src/main/java/net/minecraft/server/EntityWitherSkull.java b/src/main/java/net/minecraft/server/EntityWitherSkull.java
2015-01-25 00:37:00 +01:00
index a78e84c..e3f26a4 100644
--- a/src/main/java/net/minecraft/server/EntityWitherSkull.java
+++ b/src/main/java/net/minecraft/server/EntityWitherSkull.java
2014-11-28 02:17:45 +01:00
@@ -35,8 +35,11 @@ public class EntityWitherSkull extends EntityFireball {
protected void a(MovingObjectPosition movingobjectposition) {
if (!this.world.isStatic) {
if (movingobjectposition.entity != null) {
+ // Spigot start
2015-01-25 00:37:00 +01:00
+ boolean didDamage = false;
if (this.shooter != null) {
2015-01-25 00:37:00 +01:00
- if (movingobjectposition.entity.damageEntity(DamageSource.projectile(this, shooter), 8.0F)) { // CraftBukkit
+ didDamage = movingobjectposition.entity.damageEntity(DamageSource.projectile(this, shooter), 8.0F);
2014-11-28 02:17:45 +01:00
+ if (didDamage) {
if (!movingobjectposition.entity.isAlive()) {
this.shooter.heal(5.0F, org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason.WITHER); // CraftBukkit
} else {
@@ -44,10 +47,11 @@ public class EntityWitherSkull extends EntityFireball {
}
}
} else {
- movingobjectposition.entity.damageEntity(DamageSource.MAGIC, 5.0F);
+ didDamage = movingobjectposition.entity.damageEntity(DamageSource.MAGIC, 5.0F);
}
- if (movingobjectposition.entity instanceof EntityLiving) {
+ if (didDamage && movingobjectposition.entity instanceof EntityLiving) {
+ // Spigot end
byte b0 = 0;
2014-11-28 02:17:45 +01:00
if (this.world.getDifficulty() == EnumDifficulty.NORMAL) {
--
2014-11-28 02:17:45 +01:00
2.1.0