aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0540-Added-firing-of-PlayerChangeBeaconEffectEvent.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0540-Added-firing-of-PlayerChangeBeaconEffectEvent.patch')
-rw-r--r--patches/server/0540-Added-firing-of-PlayerChangeBeaconEffectEvent.patch40
1 files changed, 40 insertions, 0 deletions
diff --git a/patches/server/0540-Added-firing-of-PlayerChangeBeaconEffectEvent.patch b/patches/server/0540-Added-firing-of-PlayerChangeBeaconEffectEvent.patch
new file mode 100644
index 0000000000..03d8cdf4c8
--- /dev/null
+++ b/patches/server/0540-Added-firing-of-PlayerChangeBeaconEffectEvent.patch
@@ -0,0 +1,40 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jake Potrebic <[email protected]>
+Date: Wed, 24 Jun 2020 15:14:51 -0600
+Subject: [PATCH] Added firing of PlayerChangeBeaconEffectEvent
+
+
+diff --git a/src/main/java/net/minecraft/world/inventory/BeaconMenu.java b/src/main/java/net/minecraft/world/inventory/BeaconMenu.java
+index e6a4e8dcdbc49b427c2802f1a358f8f9ad04d0f0..685c35419de7e3c4e854a28118a243e65250ef59 100644
+--- a/src/main/java/net/minecraft/world/inventory/BeaconMenu.java
++++ b/src/main/java/net/minecraft/world/inventory/BeaconMenu.java
+@@ -169,13 +169,27 @@ public class BeaconMenu extends AbstractContainerMenu {
+ public MobEffect getSecondaryEffect() {
+ return BeaconMenu.decodeEffect(this.beaconData.get(2));
+ }
++ // Paper start
++ private static @Nullable org.bukkit.potion.PotionEffectType convert(Optional<MobEffect> effect) {
++ return effect.flatMap(net.minecraft.core.registries.BuiltInRegistries.MOB_EFFECT::getResourceKey).map(key -> {
++ return org.bukkit.potion.PotionEffectType.getByKey(org.bukkit.craftbukkit.util.CraftNamespacedKey.fromMinecraft(key.location()));
++ }).orElse(null);
++ }
++ // Paper end
+
+ public void updateEffects(Optional<MobEffect> primary, Optional<MobEffect> secondary) {
+ if (this.paymentSlot.hasItem()) {
+- this.beaconData.set(1, BeaconMenu.encodeEffect((MobEffect) primary.orElse(null))); // CraftBukkit - decompile error
+- this.beaconData.set(2, BeaconMenu.encodeEffect((MobEffect) secondary.orElse(null))); // CraftBukkit - decompile error
++ // Paper start
++ io.papermc.paper.event.player.PlayerChangeBeaconEffectEvent event = new io.papermc.paper.event.player.PlayerChangeBeaconEffectEvent((org.bukkit.entity.Player) this.player.player.getBukkitEntity(), convert(primary), convert(secondary), this.access.getLocation().getBlock());
++ if (event.callEvent()) {
++ this.beaconData.set(1, BeaconMenu.encodeEffect(event.getPrimary() == null ? null : org.bukkit.craftbukkit.potion.CraftPotionEffectType.bukkitToMinecraft(event.getPrimary())));
++ this.beaconData.set(2, BeaconMenu.encodeEffect(event.getSecondary() == null ? null : org.bukkit.craftbukkit.potion.CraftPotionEffectType.bukkitToMinecraft(event.getSecondary())));
++ if (event.willConsumeItem()) {
++ // Paper end
+ this.paymentSlot.remove(1);
++ }
+ this.access.execute(Level::blockEntityChanged);
++ } // Paper end
+ }
+
+ }