mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Readd old BlockDamageEvent constructor
This commit is contained in:
parent
d00071451b
commit
82aefb5454
1 changed files with 12 additions and 2 deletions
|
@ -14,11 +14,18 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
private final ItemStack itemstack;
|
||||
+ private final org.bukkit.block.BlockFace blockFace; // Paper - Expose BlockFace
|
||||
|
||||
- public BlockDamageEvent(@NotNull final Player player, @NotNull final Block block, @NotNull final ItemStack itemInHand, final boolean instaBreak) {
|
||||
+ // Paper start - expose blockface
|
||||
+ @Deprecated(forRemoval = true)
|
||||
+ @io.papermc.paper.annotation.DoNotUse
|
||||
public BlockDamageEvent(@NotNull final Player player, @NotNull final Block block, @NotNull final ItemStack itemInHand, final boolean instaBreak) {
|
||||
+ this(player, block, null, itemInHand, instaBreak); // Some plugin do bad things...
|
||||
+ }
|
||||
+
|
||||
+ @org.jetbrains.annotations.ApiStatus.Internal // Paper
|
||||
+ public BlockDamageEvent(@NotNull final Player player, @NotNull final Block block, @NotNull final org.bukkit.block.BlockFace blockFace, @NotNull final ItemStack itemInHand, final boolean instaBreak) { // Paper - Expose BlockFace
|
||||
super(block);
|
||||
+ this.blockFace = blockFace; // Paper - Expose BlockFace
|
||||
+ this.blockFace = blockFace;
|
||||
+ // Paper end - expose blockface
|
||||
this.instaBreak = instaBreak;
|
||||
this.player = player;
|
||||
this.itemstack = itemInHand;
|
||||
|
@ -34,6 +41,9 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
+ */
|
||||
+ @NotNull
|
||||
+ public org.bukkit.block.BlockFace getBlockFace() {
|
||||
+ if (this.blockFace == null) {
|
||||
+ throw new IllegalStateException("BlockFace is not available for this event, most likely due to a bad constructor call by a plugin");
|
||||
+ }
|
||||
+ return this.blockFace;
|
||||
+ }
|
||||
+ //Paper end
|
||||
|
|
Loading…
Reference in a new issue