mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-18 04:39:24 +01:00
da7138233f
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: ed0ec489 SPIGOT-7965: Unknown TransformReason for Hoglins 9db03457 SPIGOT-7964: Fix typo in Deprecation annotation d14119af PR-1082: Add "since" to Deprecation annotations e8a318d4 PR-1067: Add method to get Advancement requirements CraftBukkit Changes: 40dd796db SPIGOT-7971: NotSerializableException on serialize CraftUseCooldownComponent fa85c5e0a SPIGOT-7968: ProjectileHitEvent not trigerred when arrow hits entity b75b792ec SPIGOT-7970: World#getMaxHeight() returning incorrect value 2b9a094bb SPIGOT-7965: Unknown TransformReason for Hoglins fd3f5a380 SPIGOT-7966: Some trees do not generate with #generateTree f2822317c PR-1515: Add a Class reader and Class node argument provider 07abf6852 PR-1514: Add a test case for ClassTraverser a7577cb24 Fix Inventory#addItem not respecting max stack size 066a74e74 PR-1490: Add method to get Advancement requirements 4a1df30e4 PR-1512: Test Art class based on specific values instead of the implementation, to better catch implementation changes 53254c56f PR-1503: Simplify CAS loop to getAndSet e9447dc5e Make BlockDataMeta#setBlockData hide unspecified states dd08a7120 SPIGOT-7960: Fix inconsistency between natural item drop coordinates e9e8ed753 SPIGOT-7960: Improve natural item drop methods Spigot Changes: 60c9969b Rebuild patches
103 lines
4.5 KiB
Diff
103 lines
4.5 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
Date: Tue, 18 May 2021 12:31:54 -0700
|
|
Subject: [PATCH] Add drops to shear events
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/event/block/BlockShearEntityEvent.java b/src/main/java/org/bukkit/event/block/BlockShearEntityEvent.java
|
|
index 71c0af9373069cfaa074e1fbad592eab81025b1c..610768bd329b8612627d361fd9a773a7b91ff108 100644
|
|
--- a/src/main/java/org/bukkit/event/block/BlockShearEntityEvent.java
|
|
+++ b/src/main/java/org/bukkit/event/block/BlockShearEntityEvent.java
|
|
@@ -17,11 +17,14 @@ public class BlockShearEntityEvent extends BlockEvent implements Cancellable {
|
|
private final Entity sheared;
|
|
private final ItemStack tool;
|
|
private boolean cancelled;
|
|
+ private java.util.List<ItemStack> drops; // Paper
|
|
|
|
- public BlockShearEntityEvent(@NotNull Block dispenser, @NotNull Entity sheared, @NotNull ItemStack tool) {
|
|
+ @org.jetbrains.annotations.ApiStatus.Internal // Paper
|
|
+ public BlockShearEntityEvent(@NotNull Block dispenser, @NotNull Entity sheared, @NotNull ItemStack tool, final @NotNull java.util.List<ItemStack> drops) { // Paper - custom shear drops
|
|
super(dispenser);
|
|
this.sheared = sheared;
|
|
this.tool = tool;
|
|
+ this.drops = drops; // Paper
|
|
}
|
|
|
|
/**
|
|
@@ -64,4 +67,24 @@ public class BlockShearEntityEvent extends BlockEvent implements Cancellable {
|
|
public static HandlerList getHandlerList() {
|
|
return handlers;
|
|
}
|
|
+ // Paper start - custom shear drops
|
|
+ /**
|
|
+ * Get an immutable list of drops for this shearing.
|
|
+ *
|
|
+ * @return the shearing drops
|
|
+ * @see #setDrops(java.util.List)
|
|
+ */
|
|
+ public java.util.@NotNull @org.jetbrains.annotations.Unmodifiable List<ItemStack> getDrops() {
|
|
+ return java.util.Collections.unmodifiableList(this.drops);
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Sets the drops for the shearing.
|
|
+ *
|
|
+ * @param drops the shear drops
|
|
+ */
|
|
+ public void setDrops(final java.util.@NotNull List<org.bukkit.inventory.ItemStack> drops) {
|
|
+ this.drops = java.util.List.copyOf(drops);
|
|
+ }
|
|
+ // Paper end - custom shear drops
|
|
}
|
|
diff --git a/src/main/java/org/bukkit/event/player/PlayerShearEntityEvent.java b/src/main/java/org/bukkit/event/player/PlayerShearEntityEvent.java
|
|
index 2616943d298c523e9fe71926f42b1362c9379853..3a12674e47f3e20a32ac1ea5647105196cf3a1c9 100644
|
|
--- a/src/main/java/org/bukkit/event/player/PlayerShearEntityEvent.java
|
|
+++ b/src/main/java/org/bukkit/event/player/PlayerShearEntityEvent.java
|
|
@@ -18,17 +18,20 @@ public class PlayerShearEntityEvent extends PlayerEvent implements Cancellable {
|
|
private final Entity what;
|
|
private final ItemStack item;
|
|
private final EquipmentSlot hand;
|
|
+ private java.util.List<ItemStack> drops; // Paper - custom shear drops
|
|
|
|
- public PlayerShearEntityEvent(@NotNull Player who, @NotNull Entity what, @NotNull ItemStack item, @NotNull EquipmentSlot hand) {
|
|
+ @org.jetbrains.annotations.ApiStatus.Internal // Paper
|
|
+ public PlayerShearEntityEvent(@NotNull Player who, @NotNull Entity what, @NotNull ItemStack item, @NotNull EquipmentSlot hand, final java.util.@NotNull List<ItemStack> drops) { // Paper - custom shear drops
|
|
super(who);
|
|
this.what = what;
|
|
this.item = item;
|
|
this.hand = hand;
|
|
+ this.drops = drops; // Paper - custom shear drops
|
|
}
|
|
|
|
@Deprecated(since = "1.15.2")
|
|
public PlayerShearEntityEvent(@NotNull final Player who, @NotNull final Entity what) {
|
|
- this(who, what, new ItemStack(Material.SHEARS), EquipmentSlot.HAND);
|
|
+ this(who, what, new ItemStack(Material.SHEARS), EquipmentSlot.HAND, java.util.Collections.emptyList()); // Paper - custom shear drops
|
|
}
|
|
|
|
@Override
|
|
@@ -82,4 +85,24 @@ public class PlayerShearEntityEvent extends PlayerEvent implements Cancellable {
|
|
return handlers;
|
|
}
|
|
|
|
+ // Paper start - custom shear drops
|
|
+ /**
|
|
+ * Get an immutable list of drops for this shearing.
|
|
+ *
|
|
+ * @return the shearing drops
|
|
+ * @see #setDrops(java.util.List)
|
|
+ */
|
|
+ public java.util.@NotNull @org.jetbrains.annotations.Unmodifiable List<ItemStack> getDrops() {
|
|
+ return this.drops;
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Sets the drops for the shearing.
|
|
+ *
|
|
+ * @param drops the shear drops
|
|
+ */
|
|
+ public void setDrops(final java.util.@NotNull List<org.bukkit.inventory.ItemStack> drops) {
|
|
+ this.drops = java.util.List.copyOf(drops);
|
|
+ }
|
|
+ // Paper end - custom shear drops
|
|
}
|