mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 15:49:00 +01:00
Expose attack cooldown methods for Player
This commit is contained in:
parent
c708d136f7
commit
9ccfc565ff
1 changed files with 22 additions and 0 deletions
|
@ -3356,6 +3356,28 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
||||||
void setPlayerProfile(com.destroystokyo.paper.profile.@NotNull PlayerProfile profile);
|
void setPlayerProfile(com.destroystokyo.paper.profile.@NotNull PlayerProfile profile);
|
||||||
// Paper end - Player Profile API
|
// Paper end - Player Profile API
|
||||||
|
|
||||||
|
// Paper start - attack cooldown API
|
||||||
|
/**
|
||||||
|
* Returns the amount of ticks the current cooldown lasts
|
||||||
|
*
|
||||||
|
* @return Amount of ticks cooldown will last
|
||||||
|
*/
|
||||||
|
float getCooldownPeriod();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the percentage of attack power available based on the cooldown (zero to one).
|
||||||
|
*
|
||||||
|
* @param adjustTicks Amount of ticks to add to cooldown counter for this calculation
|
||||||
|
* @return Percentage of attack power available
|
||||||
|
*/
|
||||||
|
float getCooledAttackStrength(float adjustTicks);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reset the cooldown counter to 0, effectively starting the cooldown period.
|
||||||
|
*/
|
||||||
|
void resetCooldown();
|
||||||
|
// Paper end - attack cooldown API
|
||||||
|
|
||||||
// Spigot start
|
// Spigot start
|
||||||
public class Spigot extends Entity.Spigot {
|
public class Spigot extends Entity.Spigot {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue