Implement entity max health methods. Adds BUKKIT-266

This commit is contained in:
feildmaster
2012-12-23 05:49:03 -06:00
parent 4e1793f363
commit ced0646351
10 changed files with 92 additions and 18 deletions

View File

@@ -941,4 +941,14 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
}
}
}
public void setMaxHealth(int amount) {
super.setMaxHealth(amount);
getHandle().m(); // Update health
}
public void resetMaxHealth() {
super.resetMaxHealth();
getHandle().m(); // Update health
}
}