aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0408-Add-BellRingEvent.patch
diff options
context:
space:
mode:
authorRiley Park <[email protected]>2024-05-15 17:06:59 -0700
committerGitHub <[email protected]>2024-05-15 17:06:59 -0700
commitf17519338bc589c045e0b32bfc37e048b23544d5 (patch)
treee50182ec698b4a9de8f366f485ee089b1901bbd9 /patches/server/0408-Add-BellRingEvent.patch
parent3fc93581bb876e8149b2ca423375a98f5ca12d27 (diff)
downloadPaper-f17519338bc589c045e0b32bfc37e048b23544d5.tar.gz
Paper-f17519338bc589c045e0b32bfc37e048b23544d5.zip
Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <[email protected]> Co-authored-by: masmc05 <[email protected]>
Diffstat (limited to 'patches/server/0408-Add-BellRingEvent.patch')
-rw-r--r--patches/server/0408-Add-BellRingEvent.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/patches/server/0408-Add-BellRingEvent.patch b/patches/server/0408-Add-BellRingEvent.patch
new file mode 100644
index 0000000000..df065143ce
--- /dev/null
+++ b/patches/server/0408-Add-BellRingEvent.patch
@@ -0,0 +1,25 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Eearslya Sleiarion <[email protected]>
+Date: Sun, 23 Aug 2020 13:04:02 +0200
+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/org/bukkit/craftbukkit/event/CraftEventFactory.java b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
+index 461b25d3d0660f973e6db670899bce05010e7c49..737fbe02c630da0a95dbed49ff152fb5c7ec4d37 100644
+--- a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
++++ b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
+@@ -367,10 +367,11 @@ public class CraftEventFactory {
+ return tradeSelectEvent;
+ }
+
++ @SuppressWarnings("deprecation") // Paper use deprecated event to maintain compat (it extends modern event)
+ public static boolean handleBellRingEvent(Level world, BlockPos position, Direction direction, Entity entity) {
+ Block block = CraftBlock.at(world, position);
+ BlockFace bukkitDirection = CraftBlock.notchToBlockFace(direction);
+- BellRingEvent event = new BellRingEvent(block, bukkitDirection, (entity != null) ? entity.getBukkitEntity() : null);
++ BellRingEvent event = new io.papermc.paper.event.block.BellRingEvent(block, bukkitDirection, (entity != null) ? entity.getBukkitEntity() : null); // Paper - deprecated BellRingEvent
+ Bukkit.getPluginManager().callEvent(event);
+ return !event.isCancelled();
+ }