geforkt von Mirrors/Paper
928bcc8d3a
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 09943450 Update SnakeYAML version 5515734f SPIGOT-7162: Incorrect description for Entity#getVehicle javadoc 6f82b381 PR-788: Add getHand() to all relevant events CraftBukkit Changes: aaf484f6f SPIGOT-7163: CraftMerchantRecipe doesn't copy demand and specialPrice from BukkitMerchantRecipe 5329dd6fd PR-1107: Add getHand() to all relevant events 93061706e SPIGOT-7045: Ocelots never spawn with babies with spawn reason OCELOT_BABY
27 Zeilen
994 B
Diff
27 Zeilen
994 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
Date: Tue, 11 May 2021 14:54:20 -0700
|
|
Subject: [PATCH] Inventory#close
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/inventory/Inventory.java b/src/main/java/org/bukkit/inventory/Inventory.java
|
|
index 129b5ab5062beeb9bb52465a788bc3a3aee9c49e..c574bb94b21eb27974b40c839fce52c6ac4b54b4 100644
|
|
--- a/src/main/java/org/bukkit/inventory/Inventory.java
|
|
+++ b/src/main/java/org/bukkit/inventory/Inventory.java
|
|
@@ -355,6 +355,15 @@ public interface Inventory extends Iterable<ItemStack> {
|
|
*/
|
|
public void clear();
|
|
|
|
+ // Paper start
|
|
+ /**
|
|
+ * Closes the inventory for all viewers.
|
|
+ *
|
|
+ * @return the number if viewers the inventory was closed for
|
|
+ */
|
|
+ public int close();
|
|
+ // Paper end
|
|
+
|
|
/**
|
|
* Gets a list of players viewing the inventory. Note that a player is
|
|
* considered to be viewing their own inventory and internal crafting
|