mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 17:29:56 +01:00
4b37929208
Remove duplicate JavaDocs - At some point upstream decided to fix some of their JD errors/warnings, so now we have duplicate tags, bringing new warnings. Also add missing `@param` for ItemStack.deserializeBytes
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
Date: Tue, 4 Sep 2018 15:01:54 -0500
|
|
Subject: [PATCH] Expose attack cooldown methods for Player
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
|
index 1ba7e5c66159d8ff208f3e796a3e6569e060967c..61989130ba8d72a39002ce81eec7f4aa1943fba0 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -1753,6 +1753,26 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
|
* @param profile The new profile to use
|
|
*/
|
|
void setPlayerProfile(@NotNull PlayerProfile profile);
|
|
+
|
|
+ /**
|
|
+ * 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
|
|
|
|
// Spigot start
|