2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2022-08-01 16:01:20 +02:00
|
|
|
From: Nassim Jahnke <nassim@njahnke.dev>
|
2021-06-11 14:02:28 +02:00
|
|
|
Date: Tue, 25 Aug 2020 13:45:15 +0200
|
|
|
|
Subject: [PATCH] Add PlayerItemCooldownEvent
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/event/player/PlayerItemCooldownEvent.java b/src/main/java/io/papermc/paper/event/player/PlayerItemCooldownEvent.java
|
|
|
|
new file mode 100644
|
2024-09-30 01:48:34 +02:00
|
|
|
index 0000000000000000000000000000000000000000..07b3a93ea09f0ae7d0e7a5af3633a0c669d36fcf
|
2021-06-11 14:02:28 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/event/player/PlayerItemCooldownEvent.java
|
2024-09-30 01:48:34 +02:00
|
|
|
@@ -0,0 +1,79 @@
|
2021-06-11 14:02:28 +02:00
|
|
|
+package io.papermc.paper.event.player;
|
|
|
|
+
|
|
|
|
+import com.google.common.base.Preconditions;
|
|
|
|
+import org.bukkit.Material;
|
|
|
|
+import org.bukkit.entity.Player;
|
|
|
|
+import org.bukkit.event.Cancellable;
|
|
|
|
+import org.bukkit.event.HandlerList;
|
|
|
|
+import org.bukkit.event.player.PlayerEvent;
|
2024-02-01 10:15:57 +01:00
|
|
|
+import org.jetbrains.annotations.ApiStatus;
|
2024-09-30 01:48:34 +02:00
|
|
|
+import org.jspecify.annotations.NullMarked;
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Fired when a player receives an item cooldown.
|
|
|
|
+ */
|
2024-09-30 01:48:34 +02:00
|
|
|
+@NullMarked
|
2021-06-11 14:02:28 +02:00
|
|
|
+public class PlayerItemCooldownEvent extends PlayerEvent implements Cancellable {
|
2024-02-01 10:15:57 +01:00
|
|
|
+
|
|
|
|
+ private static final HandlerList HANDLER_LIST = new HandlerList();
|
|
|
|
+
|
2021-06-11 14:02:28 +02:00
|
|
|
+ private final Material type;
|
|
|
|
+ private int cooldown;
|
|
|
|
+
|
2024-02-01 10:15:57 +01:00
|
|
|
+ private boolean cancelled;
|
|
|
|
+
|
|
|
|
+ @ApiStatus.Internal
|
2024-09-30 01:48:34 +02:00
|
|
|
+ public PlayerItemCooldownEvent(final Player player, final Material type, final int cooldown) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ super(player);
|
|
|
|
+ this.type = type;
|
|
|
|
+ this.cooldown = cooldown;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Get the material affected by the cooldown.
|
|
|
|
+ *
|
|
|
|
+ * @return material affected by the cooldown
|
|
|
|
+ */
|
|
|
|
+ public Material getType() {
|
2024-02-01 10:15:57 +01:00
|
|
|
+ return this.type;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the cooldown in ticks.
|
|
|
|
+ *
|
|
|
|
+ * @return cooldown in ticks
|
|
|
|
+ */
|
|
|
|
+ public int getCooldown() {
|
2024-02-01 10:15:57 +01:00
|
|
|
+ return this.cooldown;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets the cooldown of the material in ticks.
|
|
|
|
+ * Setting the cooldown to 0 results in removing an already existing cooldown for the material.
|
|
|
|
+ *
|
|
|
|
+ * @param cooldown cooldown in ticks, has to be a positive number
|
|
|
|
+ */
|
2024-09-30 01:48:34 +02:00
|
|
|
+ public void setCooldown(final int cooldown) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ Preconditions.checkArgument(cooldown >= 0, "The cooldown has to be equal to or greater than 0!");
|
|
|
|
+ this.cooldown = cooldown;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean isCancelled() {
|
2024-02-01 10:15:57 +01:00
|
|
|
+ return this.cancelled;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
2024-09-30 01:48:34 +02:00
|
|
|
+ public void setCancelled(final boolean cancel) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ this.cancelled = cancel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public HandlerList getHandlers() {
|
2024-02-01 10:15:57 +01:00
|
|
|
+ return HANDLER_LIST;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static HandlerList getHandlerList() {
|
2024-02-01 10:15:57 +01:00
|
|
|
+ return HANDLER_LIST;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+}
|