mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: vicisacat <victor.branchu@gmail.com>
|
|
Date: Fri, 15 Mar 2024 17:35:18 +0100
|
|
Subject: [PATCH] Expanded Hopper API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/block/Hopper.java b/src/main/java/org/bukkit/block/Hopper.java
|
|
index 7ade312f180b7e30871d3a3240c76325cc369c26..61ea33c1f2dbb546a66f945a01feae437b1381e0 100644
|
|
--- a/src/main/java/org/bukkit/block/Hopper.java
|
|
+++ b/src/main/java/org/bukkit/block/Hopper.java
|
|
@@ -6,4 +6,20 @@ import org.bukkit.loot.Lootable;
|
|
/**
|
|
* Represents a captured state of a hopper.
|
|
*/
|
|
-public interface Hopper extends Container, LootableBlockInventory { } // Paper
|
|
+public interface Hopper extends Container, LootableBlockInventory { // Paper
|
|
+ // Paper start - Expanded Hopper API
|
|
+ /**
|
|
+ * Sets the cooldown before the hopper transfers or sucks in another item
|
|
+ * @param cooldown the cooldown in ticks
|
|
+ * @throws IllegalArgumentException if the passed cooldown value is negative.
|
|
+ */
|
|
+ void setTransferCooldown(@org.jetbrains.annotations.Range(from = 0, to = Integer.MAX_VALUE) int cooldown);
|
|
+
|
|
+ /**
|
|
+ * Returns the cooldown before the hopper transfers or sucks in another item
|
|
+ * @return the cooldown in ticks
|
|
+ */
|
|
+ int getTransferCooldown();
|
|
+ // Paper end - Expanded Hopper API
|
|
+}
|
|
+
|