Update relevent methods
This commit is contained in:
parent
b859ea28f9
commit
288882a427
@ -10,7 +10,7 @@ public class BoatWatcher extends FlagWatcher {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getDamage() {
|
public int getDamage() {
|
||||||
return Math.round(getValue(19, 40F));
|
return (Integer) getValue(19, 40F);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getHealth() {
|
public int getHealth() {
|
||||||
|
@ -77,7 +77,7 @@ public class HorseWatcher extends AgeableWatcher {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean isTrue(int i) {
|
private boolean isTrue(int i) {
|
||||||
return (getValue(16, (byte) 0) & i) != 0;
|
return ((Integer) getValue(16, (byte) 0) & i) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCanBreed(boolean breed) {
|
public void setCanBreed(boolean breed) {
|
||||||
|
@ -34,7 +34,7 @@ public class ZombieWatcher extends LivingWatcher {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean isShaking() {
|
public boolean isShaking() {
|
||||||
return getValue(14, (byte) 0) == 1;
|
return (Byte) getValue(14, (byte) 0) == 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setBaby(boolean baby) {
|
public void setBaby(boolean baby) {
|
||||||
|
Loading…
Reference in New Issue
Block a user