Fix scaling for player health. Fixes BUKKIT-4431

This commit is contained in:
Wesley Wolfe 2013-07-02 23:08:55 -05:00
parent e1a3fb56b5
commit adcb293a03
2 changed files with 15 additions and 2 deletions

View File

@ -233,8 +233,8 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
}
if (this.getHealth() != this.bP || this.bQ != this.foodData.a() || this.foodData.e() == 0.0F != this.bR) {
// CraftBukkit - this.getHealth() -> this.getScaledHealth() - Magic number 20 -> original max health
this.playerConnection.sendPacket(new Packet8UpdateHealth((float) (this.getHealth() * this.getMaxHealth() / 20.0D), this.foodData.a(), this.foodData.e()));
// CraftBukkit - Optionally scale health
this.playerConnection.sendPacket(new Packet8UpdateHealth(getBukkitEntity().getScaledHealth(), this.foodData.a(), this.foodData.e()));
this.bP = this.getHealth();
this.bQ = this.foodData.a();
this.bR = this.foodData.e() == 0.0F;

View File

@ -61,6 +61,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
private final Set<String> channels = new HashSet<String>();
private final Map<String, Player> hiddenPlayers = new MapMaker().softValues().makeMap();
private int hash = 0;
private boolean scaledHealth;
public CraftPlayer(CraftServer server, EntityPlayer entity) {
super(server, entity);
@ -997,4 +998,16 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
this.server.getScoreboardManager().setPlayerBoard(this, scoreboard);
}
public float getScaledHealth() {
return (float) (this.scaledHealth ? getHealth() / getMaxHealth() * 20.0D : getHealth());
}
public void setScaleHealth(boolean scale) {
this.scaledHealth = scale;
}
public boolean isScaledHealth() {
return this.scaledHealth;
}
}