2019-05-22 04:14:56 +00:00
|
|
|
From 6e59b914fe8eb9eaed067387f9c727536e429b23 Mon Sep 17 00:00:00 2001
|
2019-03-24 17:16:59 +00:00
|
|
|
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
|
2019-05-22 04:14:56 +00:00
|
|
|
index 32dc1f868..dea6130a6 100644
|
2019-03-24 17:16:59 +00:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
2019-05-22 04:14:56 +00:00
|
|
|
@@ -1929,6 +1929,26 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
2019-03-24 17:16:59 +00:00
|
|
|
* @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
|
|
|
|
--
|
2019-04-23 04:47:07 +00:00
|
|
|
2.21.0
|
2019-03-24 17:16:59 +00:00
|
|
|
|