Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
57dd397155
Upstream has released updates that appears 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: b999860d SPIGOT-2304: Add LootGenerateEvent CraftBukkit Changes:77fd87e4
SPIGOT-2304: Implement LootGenerateEventa1a705ee
SPIGOT-5566: Doused campfires & fires should call EntityChangeBlockEvent41712edd
SPIGOT-5707: PersistentDataHolder not Persistent on API dropped Item
33 Zeilen
1.5 KiB
Diff
33 Zeilen
1.5 KiB
Diff
From 3c38ffde416c5cee46f869755a7280c58dec8ce6 Mon Sep 17 00:00:00 2001
|
|
From: Trigary <trigary0@gmail.com>
|
|
Date: Sun, 1 Mar 2020 22:43:34 +0100
|
|
Subject: [PATCH] add hand to BlockMultiPlaceEvent
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/event/block/BlockMultiPlaceEvent.java b/src/main/java/org/bukkit/event/block/BlockMultiPlaceEvent.java
|
|
index fe2ec79dd..8460aa4f5 100644
|
|
--- a/src/main/java/org/bukkit/event/block/BlockMultiPlaceEvent.java
|
|
+++ b/src/main/java/org/bukkit/event/block/BlockMultiPlaceEvent.java
|
|
@@ -18,9 +18,17 @@ import org.jetbrains.annotations.NotNull;
|
|
public class BlockMultiPlaceEvent extends BlockPlaceEvent {
|
|
private final List<BlockState> states;
|
|
|
|
+ @Deprecated // Paper
|
|
public BlockMultiPlaceEvent(@NotNull List<BlockState> states, @NotNull Block clicked, @NotNull ItemStack itemInHand, @NotNull Player thePlayer, boolean canBuild) {
|
|
- super(states.get(0).getBlock(), states.get(0), clicked, itemInHand, thePlayer, canBuild);
|
|
+ //Paper start - add hand to BlockMultiPlaceEvent
|
|
+ this(states, clicked, itemInHand, thePlayer, canBuild, org.bukkit.inventory.EquipmentSlot.HAND);
|
|
+ }
|
|
+
|
|
+
|
|
+ public BlockMultiPlaceEvent(@NotNull List<BlockState> states, @NotNull Block clicked, @NotNull ItemStack itemInHand, @NotNull Player thePlayer, boolean canBuild, @NotNull org.bukkit.inventory.EquipmentSlot hand) {
|
|
+ super(states.get(0).getBlock(), states.get(0), clicked, itemInHand, thePlayer, canBuild, hand);
|
|
this.states = ImmutableList.copyOf(states);
|
|
+ //Paper end
|
|
}
|
|
|
|
/**
|
|
--
|
|
2.26.2
|
|
|