mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 11:24:11 +01:00
Add methods to get and set arrow knockback. Adds BUKKIT-5103
By: Likaos <romain.rosique@gmail.com>
This commit is contained in:
parent
97b317368b
commit
616d88c604
1 changed files with 10 additions and 0 deletions
|
@ -2,6 +2,7 @@ package org.bukkit.craftbukkit.entity;
|
|||
|
||||
import net.minecraft.server.EntityArrow;
|
||||
|
||||
import org.apache.commons.lang.Validate;
|
||||
import org.bukkit.craftbukkit.CraftServer;
|
||||
import org.bukkit.entity.Arrow;
|
||||
import org.bukkit.entity.EntityType;
|
||||
|
@ -27,6 +28,15 @@ public class CraftArrow extends AbstractProjectile implements Arrow {
|
|||
}
|
||||
}
|
||||
|
||||
public void setKnockbackStrength(int knockbackStrength) {
|
||||
Validate.isTrue(knockbackStrength >= 0, "Knockback cannot be negative");
|
||||
getHandle().a(knockbackStrength);
|
||||
}
|
||||
|
||||
public int getKnockbackStrength() {
|
||||
return getHandle().aw;
|
||||
}
|
||||
|
||||
@Override
|
||||
public EntityArrow getHandle() {
|
||||
return (EntityArrow) entity;
|
||||
|
|
Loading…
Reference in a new issue