aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0226-Add-PlayerFlowerPotManipulateEvent.patch
blob: 70a0b6ec31fa77aa9d354f1b420d32a90426410b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: MisterVector <whizkid3000@hotmail.com>
Date: Tue, 13 Aug 2019 19:44:19 -0700
Subject: [PATCH] Add PlayerFlowerPotManipulateEvent


diff --git a/src/main/java/io/papermc/paper/event/player/PlayerFlowerPotManipulateEvent.java b/src/main/java/io/papermc/paper/event/player/PlayerFlowerPotManipulateEvent.java
new file mode 100644
index 0000000000000000000000000000000000000000..03881ae56b3dd68a0aa600382b4689f213ec05f3
--- /dev/null
+++ b/src/main/java/io/papermc/paper/event/player/PlayerFlowerPotManipulateEvent.java
@@ -0,0 +1,80 @@
+package io.papermc.paper.event.player;
+
+import org.bukkit.block.Block;
+import org.bukkit.entity.Player;
+import org.bukkit.event.Cancellable;
+import org.bukkit.event.HandlerList;
+import org.bukkit.event.player.PlayerEvent;
+import org.bukkit.inventory.ItemStack;
+import org.jetbrains.annotations.ApiStatus;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Called when a player places an item in or takes an item out of a flowerpot.
+ */
+@NullMarked
+public class PlayerFlowerPotManipulateEvent extends PlayerEvent implements Cancellable {
+
+    private static final HandlerList HANDLER_LIST = new HandlerList();
+
+    private final Block flowerpot;
+    private final ItemStack item;
+    private final boolean placing;
+
+    private boolean cancelled;
+
+    @ApiStatus.Internal
+    public PlayerFlowerPotManipulateEvent(final Player player, final Block flowerpot, final ItemStack item, final boolean placing) {
+        super(player);
+        this.flowerpot = flowerpot;
+        this.item = item;
+        this.placing = placing;
+    }
+
+    /**
+     * Gets the flowerpot that is involved in this event.
+     *
+     * @return the flowerpot that is involved with this event
+     */
+    public Block getFlowerpot() {
+        return this.flowerpot;
+    }
+
+    /**
+     * Gets the item being placed, or taken from, the flower pot.
+     * Check if placing with {@link #isPlacing()}.
+     *
+     * @return the item placed, or taken from, the flowerpot
+     */
+    public ItemStack getItem() {
+        return this.item;
+    }
+
+    /**
+     * Gets if the item is being placed into the flowerpot.
+     *
+     * @return if the item is being placed into the flowerpot
+     */
+    public boolean isPlacing() {
+        return this.placing;
+    }
+
+    @Override
+    public boolean isCancelled() {
+        return this.cancelled;
+    }
+
+    @Override
+    public void setCancelled(final boolean cancel) {
+        this.cancelled = cancel;
+    }
+
+    @Override
+    public HandlerList getHandlers() {
+        return HANDLER_LIST;
+    }
+
+    public static HandlerList getHandlerList() {
+        return HANDLER_LIST;
+    }
+}