PaperMC/patches/api/More-Chest-Block-API.patch
SoSeDiK b00b419da9 Add a way to check whether the chest is blocked (#10635)
* More Chest Block API

* rebased and slight logic fixes
2024-05-05 20:57:28 +03:00

44 lines
1.7 KiB
Diff

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
+}