summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/EntityHuman.java
diff options
context:
space:
mode:
authort00thpick1 <t00thpick1dirko@gmail.com>2014-06-19 14:38:45 -0400
committerWesley Wolfe <wesley.d.wolfe+git@gmail.com>2014-06-22 15:23:16 -0500
commit6f21d3ca8fb02001dd10f49019cfb05ed914a873 (patch)
tree304ff9a4e85d2ba38a61e9b4ead339266ddbbbd6 /src/main/java/net/minecraft/server/EntityHuman.java
parentbed3f7f8f54305c94356691d6b8ec9b65a1a5d4a (diff)
downloadcraftbukkit-6f21d3ca8fb02001dd10f49019cfb05ed914a873.tar
craftbukkit-6f21d3ca8fb02001dd10f49019cfb05ed914a873.tar.gz
craftbukkit-6f21d3ca8fb02001dd10f49019cfb05ed914a873.tar.lz
craftbukkit-6f21d3ca8fb02001dd10f49019cfb05ed914a873.tar.xz
craftbukkit-6f21d3ca8fb02001dd10f49019cfb05ed914a873.zip
[Bleeding] Implement new damage api. Fixes BUKKIT-5326, BUKKIT-3878.
This commit centralizes event handling to where damage is actually applied to the entity to avoid bugs that have resulted from nodamageticks, modifications to damage after the event has been called, and similar mishaps. This also implements new API for getting and setting of modifications made to the damage amount actually applied to the entity. This is done by storing the change in the damage amount as each modifier is applied by vanilla code. The method that actually damages the armor worn by an entity has been relocated beneath the event called as to not apply durability loss when the event has been cancelled.
Diffstat (limited to 'src/main/java/net/minecraft/server/EntityHuman.java')
-rw-r--r--src/main/java/net/minecraft/server/EntityHuman.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main/java/net/minecraft/server/EntityHuman.java b/src/main/java/net/minecraft/server/EntityHuman.java
index 381ba316..a5dfcf4b 100644
--- a/src/main/java/net/minecraft/server/EntityHuman.java
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
@@ -799,7 +799,12 @@ public abstract class EntityHuman extends EntityLiving implements ICommandListen
return (float) i / (float) this.inventory.armor.length;
}
- protected void d(DamageSource damagesource, float f) {
+ // CraftBukkit start
+ protected boolean d(DamageSource damagesource, float f) { // void -> boolean
+ if (true) {
+ return super.d(damagesource, f);
+ }
+ // CraftBukkit end
if (!this.isInvulnerable()) {
if (!damagesource.ignoresArmor() && this.isBlocking() && f > 0.0F) {
f = (1.0F + f) * 0.5F;
@@ -819,6 +824,7 @@ public abstract class EntityHuman extends EntityLiving implements ICommandListen
this.aV().a(damagesource, f2, f);
}
}
+ return false; // CraftBukkit
}
public void openFurnace(TileEntityFurnace tileentityfurnace) {}