Paper/patches/server/0513-Implement-PlayerFlowerPotManipulateEvent.patch

37 lines
2.1 KiB
Diff
Raw Normal View History

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: MisterVector <whizkid3000@hotmail.com>
Date: Tue, 13 Aug 2019 19:45:06 -0700
Subject: [PATCH] Implement PlayerFlowerPotManipulateEvent
diff --git a/src/main/java/net/minecraft/world/level/block/FlowerPotBlock.java b/src/main/java/net/minecraft/world/level/block/FlowerPotBlock.java
2023-12-06 20:10:59 +01:00
index c450faf8c043665eab020141f3c27e3d9890cb86..d667526aa8132d34437f00dff5457ca9f73cef00 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/level/block/FlowerPotBlock.java
+++ b/src/main/java/net/minecraft/world/level/block/FlowerPotBlock.java
2023-12-06 04:00:14 +01:00
@@ -66,6 +66,25 @@ public class FlowerPotBlock extends Block {
2021-06-14 20:50:22 +02:00
boolean bl = blockState.is(Blocks.AIR);
boolean bl2 = this.isEmpty();
if (bl != bl2) {
2021-06-11 14:02:28 +02:00
+ // Paper start
+ org.bukkit.entity.Player player1 = (org.bukkit.entity.Player) player.getBukkitEntity();
2021-06-14 20:50:22 +02:00
+ boolean placing = bl2;
2021-06-11 14:02:28 +02:00
+ org.bukkit.block.Block bukkitblock = org.bukkit.craftbukkit.block.CraftBlock.at(world, pos);
2021-06-14 20:50:22 +02:00
+ org.bukkit.inventory.ItemStack bukkititemstack = org.bukkit.craftbukkit.inventory.CraftItemStack.asBukkitCopy(itemStack);
2023-12-06 20:10:59 +01:00
+ org.bukkit.Material mat = org.bukkit.craftbukkit.util.CraftMagicNumbers.getMaterial(this.potted);
2021-06-11 14:02:28 +02:00
+ org.bukkit.inventory.ItemStack bukkititemstack1 = new org.bukkit.inventory.ItemStack(mat, 1);
+ org.bukkit.inventory.ItemStack whichitem = placing ? bukkititemstack : bukkititemstack1;
+
2021-06-14 20:50:22 +02:00
+ io.papermc.paper.event.player.PlayerFlowerPotManipulateEvent event = new io.papermc.paper.event.player.PlayerFlowerPotManipulateEvent(player1, bukkitblock, whichitem, placing);
2021-06-11 14:02:28 +02:00
+ player1.getServer().getPluginManager().callEvent(event);
+
+ if (event.isCancelled()) {
+ // Update client
+ player1.updateInventory();
+
+ return InteractionResult.PASS;
+ }
+ // Paper end
2021-06-14 20:50:22 +02:00
if (bl2) {
world.setBlock(pos, blockState, 3);
2021-06-11 14:02:28 +02:00
player.awardStat(Stats.POT_FLOWER);