Skip to content

Commit

Permalink
Updated Upstream (Paper)
Browse files Browse the repository at this point in the history
Upstream has released updates that appear to apply and compile correctly

Paper Changes:
b3cc88799 Add the ability to clear entities from block storage (#5598)
f50171f3b Add missing rarity method on ItemStack (#5594)
  • Loading branch information
BillyGalbreath committed May 10, 2021
1 parent 7a728f8 commit adfe5d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Paper
Submodule Paper updated 28 files
+20 −0 Spigot-API-Patches/0282-Item-Rarity-API.patch
+22 −0 Spigot-API-Patches/0295-Add-EntityBlockStorage-clearEntities.patch
+2 −2 Spigot-Server-Patches/0699-fix-cancelling-block-falling-causing-client-desync.patch
+0 −0 Spigot-Server-Patches/0700-Expose-protocol-version.patch
+0 −0 Spigot-Server-Patches/0701-Allow-for-Component-suggestion-tooltips-in-AsyncTabC.patch
+0 −0 Spigot-Server-Patches/0702-Enhance-console-tab-completions-for-brigadier-comman.patch
+0 −0 Spigot-Server-Patches/0703-Fix-PlayerItemConsumeEvent-cancelling-properly.patch
+0 −0 Spigot-Server-Patches/0704-Add-bypass-host-check.patch
+0 −0 Spigot-Server-Patches/0705-don-t-throw-when-loading-invalid-TEs.patch
+0 −0 Spigot-Server-Patches/0706-Set-area-affect-cloud-rotation.patch
+0 −0 Spigot-Server-Patches/0707-add-isDeeplySleeping-to-HumanEntity.patch
+0 −0 Spigot-Server-Patches/0708-Fix-duplicating-give-items-on-item-drop-cancel.patch
+0 −0 Spigot-Server-Patches/0709-add-consumeFuel-to-FurnaceBurnEvent.patch
+0 −0 Spigot-Server-Patches/0710-add-get-set-drop-chance-to-EntityEquipment.patch
+0 −0 Spigot-Server-Patches/0711-fix-PigZombieAngerEvent-cancellation.patch
+0 −0 Spigot-Server-Patches/0712-Fix-checkReach-check-for-Shulker-boxes.patch
+0 −0 Spigot-Server-Patches/0713-fix-PlayerItemHeldEvent-firing-twice.patch
+0 −0 Spigot-Server-Patches/0714-Added-PlayerDeepSleepEvent.patch
+0 −0 Spigot-Server-Patches/0715-More-World-API.patch
+0 −0 Spigot-Server-Patches/0716-Added-PlayerBedFailEnterEvent.patch
+0 −0 Spigot-Server-Patches/0717-Implement-methods-to-convert-between-Component-and-B.patch
+0 −0 Spigot-Server-Patches/0718-Fix-anchor-respawn-acting-as-a-bed-respawn-from-the-.patch
+0 −0 Spigot-Server-Patches/0719-add-RespawnFlags-to-PlayerRespawnEvent.patch
+0 −0 Spigot-Server-Patches/0720-Introduce-beacon-activation-deactivation-events.patch
+0 −0 Spigot-Server-Patches/0721-Add-Channel-initialization-listeners.patch
+0 −0 Spigot-Server-Patches/0722-Send-empty-commands-if-tab-completion-is-disabled.patch
+0 −0 Spigot-Server-Patches/0723-Add-more-WanderingTrader-API.patch
+37 −0 Spigot-Server-Patches/0724-Add-EntityBlockStorage-clearEntities.patch
6 changes: 3 additions & 3 deletions patches/api/0019-ItemStack-convenience-methods.patch
Expand Up @@ -50,7 +50,7 @@ index 9b1c9e60dba9ea3ef8d8e164f13dd76daf57db8e..b04e9de7183f00a9a47c1fce26895c83
+ // Purpur end
}
diff --git a/src/main/java/org/bukkit/inventory/ItemStack.java b/src/main/java/org/bukkit/inventory/ItemStack.java
index 58f99e3ebac9a01ebffe4d208e16cbee474d4aa3..9154ad938505a8ade190a78574eb49348525fd6a 100644
index 3c64c6ef397af102a3e085fe6b77a888d5c3de84..8c6d6399b8562631f391a5a18cbde7ae5ef4a46b 100644
--- a/src/main/java/org/bukkit/inventory/ItemStack.java
+++ b/src/main/java/org/bukkit/inventory/ItemStack.java
@@ -17,6 +17,18 @@ import org.bukkit.inventory.meta.ItemMeta;
Expand All @@ -72,8 +72,8 @@ index 58f99e3ebac9a01ebffe4d208e16cbee474d4aa3..9154ad938505a8ade190a78574eb4934

/**
* Represents a stack of items.
@@ -843,4 +855,626 @@ public class ItemStack implements Cloneable, ConfigurationSerializable, net.kyor
return itemMeta != null && itemMeta.hasItemFlag(flag);
@@ -853,4 +865,626 @@ public class ItemStack implements Cloneable, ConfigurationSerializable, net.kyor
return Bukkit.getUnsafe().getItemStackRarity(this);
}
// Paper end
+
Expand Down
Expand Up @@ -5,7 +5,7 @@ Subject: [PATCH] Config to change max number of bees


diff --git a/src/main/java/net/minecraft/world/level/block/entity/TileEntityBeehive.java b/src/main/java/net/minecraft/world/level/block/entity/TileEntityBeehive.java
index 3cbcbb028b864f1d14e004628bbc0829f71ab476..3ce6a1b1f75443d1d1c6740d6f3f730f06a34f6a 100644
index 80083a6666a28372946cf0e68ded44d075357f7d..58bf1008ab19340bce5111e006a8de0e7f39e0e5 100644
--- a/src/main/java/net/minecraft/world/level/block/entity/TileEntityBeehive.java
+++ b/src/main/java/net/minecraft/world/level/block/entity/TileEntityBeehive.java
@@ -29,7 +29,7 @@ public class TileEntityBeehive extends TileEntity implements ITickable {
Expand Down

0 comments on commit adfe5d3

Please sign in to comment.