2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Eearslya Sleiarion <eearslya@gmail.com>
|
|
|
|
Date: Mon, 24 Jun 2019 21:27:39 -0700
|
|
|
|
Subject: [PATCH] Add BellRingEvent
|
|
|
|
|
|
|
|
Add a new event, BellRingEvent, to trigger whenever a player rings a
|
|
|
|
village bell. Passes along the bell block and the player who rang it.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/event/block/BellRingEvent.java b/src/main/java/io/papermc/paper/event/block/BellRingEvent.java
|
|
|
|
new file mode 100644
|
2024-02-01 10:15:57 +01:00
|
|
|
index 0000000000000000000000000000000000000000..7d3f04d5ab620f37d2253b575ae370d95ecf21ef
|
2021-06-11 14:02:28 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/event/block/BellRingEvent.java
|
2024-02-01 10:15:57 +01:00
|
|
|
@@ -0,0 +1,22 @@
|
2021-06-11 14:02:28 +02:00
|
|
|
+package io.papermc.paper.event.block;
|
|
|
|
+
|
|
|
|
+import org.bukkit.block.Block;
|
2023-04-07 20:39:13 +02:00
|
|
|
+import org.bukkit.block.BlockFace;
|
2021-06-11 14:02:28 +02:00
|
|
|
+import org.bukkit.entity.Entity;
|
2024-02-01 10:15:57 +01:00
|
|
|
+import org.jetbrains.annotations.ApiStatus;
|
2021-06-11 14:02:28 +02:00
|
|
|
+import org.jetbrains.annotations.NotNull;
|
|
|
|
+import org.jetbrains.annotations.Nullable;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Called when a bell is rung.
|
2024-02-01 10:15:57 +01:00
|
|
|
+ *
|
2023-04-07 20:39:13 +02:00
|
|
|
+ * @deprecated use {@link org.bukkit.event.block.BellRingEvent}
|
2021-06-11 14:02:28 +02:00
|
|
|
+ */
|
2023-04-07 20:39:13 +02:00
|
|
|
+@Deprecated
|
2024-02-01 10:15:57 +01:00
|
|
|
+public class BellRingEvent extends org.bukkit.event.block.BellRingEvent {
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
2024-02-01 10:15:57 +01:00
|
|
|
+ @ApiStatus.Internal
|
2023-04-07 20:39:13 +02:00
|
|
|
+ public BellRingEvent(@NotNull Block block, @NotNull BlockFace direction, @Nullable Entity entity) {
|
|
|
|
+ super(block, direction, entity);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+}
|