Set the damage for a minecart
This commit is contained in:
parent
b7ebe8411a
commit
14b76f73c8
@ -8,4 +8,14 @@ public class MinecartWatcher extends FlagWatcher {
|
|||||||
super(entityId);
|
super(entityId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setDamage(float damage) {
|
||||||
|
setValue(19, damage);
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getDamage() {
|
||||||
|
if (getValue(19) != null)
|
||||||
|
return (Float) getValue(19);
|
||||||
|
return 0F;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user