mirror of
https://github.com/PaperMC/Paper.git
synced 2025-07-31 04:02:06 -07:00
Add a way to check whether the chest is blocked (#10635)
* More Chest Block API * rebased and slight logic fixes
This commit is contained in:
44
patches/api/More-Chest-Block-API.patch
Normal file
44
patches/api/More-Chest-Block-API.patch
Normal file
@@ -0,0 +1,44 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: SoSeDiK <mrsosedik@gmail.com>
|
||||
Date: Wed, 1 May 2024 08:22:13 +0300
|
||||
Subject: [PATCH] More Chest Block API
|
||||
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/block/Chest.java b/src/main/java/org/bukkit/block/Chest.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/block/Chest.java
|
||||
+++ b/src/main/java/org/bukkit/block/Chest.java
|
||||
@@ -0,0 +0,0 @@ public interface Chest extends Container, LootableBlockInventory, Lidded { // Pa
|
||||
*/
|
||||
@NotNull
|
||||
Inventory getBlockInventory();
|
||||
+
|
||||
+ // Paper start - More Chest Block API
|
||||
+ /**
|
||||
+ * Checks whether this chest is blocked
|
||||
+ * by either a block above or a sitting cat
|
||||
+ *
|
||||
+ * @return whether this chest is blocked
|
||||
+ */
|
||||
+ boolean isBlocked();
|
||||
+ // Paper end - More Chest Block API
|
||||
}
|
||||
diff --git a/src/main/java/org/bukkit/block/EnderChest.java b/src/main/java/org/bukkit/block/EnderChest.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/block/EnderChest.java
|
||||
+++ b/src/main/java/org/bukkit/block/EnderChest.java
|
||||
@@ -0,0 +0,0 @@ package org.bukkit.block;
|
||||
/**
|
||||
* Represents a captured state of an ender chest.
|
||||
*/
|
||||
-public interface EnderChest extends Lidded, TileState { }
|
||||
+public interface EnderChest extends Lidded, TileState {
|
||||
+ // Paper start - More Chest Block API
|
||||
+ /**
|
||||
+ * Checks whether this ender chest is blocked by a block above
|
||||
+ *
|
||||
+ * @return whether this ender chest is blocked
|
||||
+ */
|
||||
+ boolean isBlocked();
|
||||
+ // Paper end - More Chest Block API
|
||||
+}
|
Reference in New Issue
Block a user