mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-13 11:15:57 -07:00
Add setCritical and isCritical methods to Arrow.java. Adds BUKKIT-5113
By: MorphanOne <morphanone@gmail.com>
This commit is contained in:
@@ -20,4 +20,23 @@ public interface Arrow extends Projectile {
|
|||||||
* @param knockbackStrength the knockback strength value
|
* @param knockbackStrength the knockback strength value
|
||||||
*/
|
*/
|
||||||
public void setKnockbackStrength(int knockbackStrength);
|
public void setKnockbackStrength(int knockbackStrength);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets whether this arrow is critical.
|
||||||
|
* <p>
|
||||||
|
* Critical arrows have increased damage and cause particle effects.
|
||||||
|
* <p>
|
||||||
|
* Critical arrows generally occur when a player fully draws a bow before
|
||||||
|
* firing.
|
||||||
|
*
|
||||||
|
* @return true if it is critical
|
||||||
|
*/
|
||||||
|
public boolean isCritical();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets whether or not this arrow should be critical.
|
||||||
|
*
|
||||||
|
* @param critical whether or not it should be critical
|
||||||
|
*/
|
||||||
|
public void setCritical(boolean critical);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user