mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 02:01:44 +01:00
Add API to get / set base arrow damage
This commit is contained in:
parent
531c25d73f
commit
63db044596
1 changed files with 11 additions and 0 deletions
|
@ -26,6 +26,17 @@ public class CraftArrow extends AbstractProjectile implements Arrow {
|
|||
return getHandle().knockbackStrength;
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getDamage() {
|
||||
return getHandle().getDamage();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setDamage(double damage) {
|
||||
Preconditions.checkArgument(damage >= 0, "Damage must be positive");
|
||||
getHandle().setDamage(damage);
|
||||
}
|
||||
|
||||
public boolean isCritical() {
|
||||
return getHandle().isCritical();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue