mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-04 01:39:54 +01:00
9889c651ce
I managed to move it, yet forgot to actually fix it up...
40 lines
1.9 KiB
Diff
40 lines
1.9 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
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/ContainerBeacon.java b/src/main/java/net/minecraft/world/inventory/ContainerBeacon.java
|
|
index 7e5a0bad616d9477e01426ab1604184ef3fab1c1..085298a9c3837dfa48dfbbf02d6261db12c79036 100644
|
|
--- a/src/main/java/net/minecraft/world/inventory/ContainerBeacon.java
|
|
+++ b/src/main/java/net/minecraft/world/inventory/ContainerBeacon.java
|
|
@@ -13,6 +13,10 @@ import net.minecraft.world.entity.player.PlayerInventory;
|
|
import org.bukkit.craftbukkit.inventory.CraftInventoryView;
|
|
// CraftBukkit end
|
|
|
|
+// Paper start
|
|
+import io.papermc.paper.event.player.PlayerChangeBeaconEffectEvent;
|
|
+// Paper end
|
|
+
|
|
public class ContainerBeacon extends Container {
|
|
|
|
private final IInventory beacon;
|
|
@@ -139,9 +143,15 @@ public class ContainerBeacon extends Container {
|
|
|
|
public void c(int i, int j) {
|
|
if (this.d.hasItem()) {
|
|
- this.containerProperties.setProperty(1, i);
|
|
- this.containerProperties.setProperty(2, j);
|
|
+ // Paper start
|
|
+ PlayerChangeBeaconEffectEvent event = new PlayerChangeBeaconEffectEvent((org.bukkit.entity.Player) this.player.player.getBukkitEntity(), org.bukkit.potion.PotionEffectType.getById(i), org.bukkit.potion.PotionEffectType.getById(j), this.containerAccess.getLocation().getBlock());
|
|
+ if (event.callEvent()) {
|
|
+ this.containerProperties.setProperty(1, event.getPrimary() == null ? 0 : event.getPrimary().getId());
|
|
+ this.containerProperties.setProperty(2, event.getSecondary() == null ? 0 : event.getSecondary().getId());
|
|
+ if (!event.willConsumeItem()) return;
|
|
this.d.a(1);
|
|
+ }
|
|
+ // Paper end
|
|
}
|
|
|
|
}
|