Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com> Co-authored-by: masmc05 <masmc05@gmail.com>
This commit is contained in:
parent
3fc93581bb
commit
f17519338b
1360 changed files with 1817 additions and 1446 deletions
32
patches/api/0459-Expanded-Hopper-API.patch
Normal file
32
patches/api/0459-Expanded-Hopper-API.patch
Normal file
|
@ -0,0 +1,32 @@
|
|||
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
|
||||
+}
|
||||
+
|
Loading…
Add table
Add a link
Reference in a new issue