30
Spigot-API-Patches/add-hand-to-BlockMultiPlaceEvent.patch
Normal file
30
Spigot-API-Patches/add-hand-to-BlockMultiPlaceEvent.patch
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 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
|
||||||
|
@@ -0,0 +0,0 @@ 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
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
--
|
||||||
31
Spigot-Server-Patches/add-hand-to-BlockMultiPlaceEvent.patch
Normal file
31
Spigot-Server-Patches/add-hand-to-BlockMultiPlaceEvent.patch
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Trigary <trigary0@gmail.com>
|
||||||
|
Date: Sun, 1 Mar 2020 22:43:24 +0100
|
||||||
|
Subject: [PATCH] add hand to BlockMultiPlaceEvent
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
||||||
|
index 39ce40bd5..1f5d15bb4 100644
|
||||||
|
--- a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
||||||
|
+++ b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
||||||
|
@@ -0,0 +0,0 @@ public class CraftEventFactory {
|
||||||
|
}
|
||||||
|
|
||||||
|
org.bukkit.inventory.ItemStack item;
|
||||||
|
+ //Paper start - add hand to BlockMultiPlaceEvent
|
||||||
|
+ EquipmentSlot equipmentSlot;
|
||||||
|
if (hand == EnumHand.MAIN_HAND) {
|
||||||
|
item = player.getInventory().getItemInMainHand();
|
||||||
|
+ equipmentSlot = EquipmentSlot.HAND;
|
||||||
|
} else {
|
||||||
|
item = player.getInventory().getItemInOffHand();
|
||||||
|
+ equipmentSlot = EquipmentSlot.OFF_HAND;
|
||||||
|
}
|
||||||
|
|
||||||
|
- BlockMultiPlaceEvent event = new BlockMultiPlaceEvent(blockStates, blockClicked, item, player, canBuild);
|
||||||
|
+ BlockMultiPlaceEvent event = new BlockMultiPlaceEvent(blockStates, blockClicked, item, player, canBuild, equipmentSlot);
|
||||||
|
+ //Paper end
|
||||||
|
craftServer.getPluginManager().callEvent(event);
|
||||||
|
|
||||||
|
return event;
|
||||||
|
--
|
||||||
Reference in New Issue
Block a user