mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
65bc2541a3
By: md_5 <git@md-5.net>
31 lines
1.5 KiB
Diff
31 lines
1.5 KiB
Diff
--- a/net/minecraft/world/level/gameevent/GameEventDispatcher.java
|
|
+++ b/net/minecraft/world/level/gameevent/GameEventDispatcher.java
|
|
@@ -12,6 +12,13 @@
|
|
import net.minecraft.world.level.chunk.Chunk;
|
|
import net.minecraft.world.phys.Vec3D;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.Bukkit;
|
|
+import org.bukkit.craftbukkit.CraftGameEvent;
|
|
+import org.bukkit.craftbukkit.util.CraftLocation;
|
|
+import org.bukkit.event.world.GenericGameEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class GameEventDispatcher {
|
|
|
|
private final WorldServer level;
|
|
@@ -23,6 +30,14 @@
|
|
public void post(Holder<GameEvent> holder, Vec3D vec3d, GameEvent.a gameevent_a) {
|
|
int i = ((GameEvent) holder.value()).notificationRadius();
|
|
BlockPosition blockposition = BlockPosition.containing(vec3d);
|
|
+ // CraftBukkit start
|
|
+ GenericGameEvent event = new GenericGameEvent(CraftGameEvent.minecraftToBukkit(holder.value()), CraftLocation.toBukkit(blockposition, level.getWorld()), (gameevent_a.sourceEntity() == null) ? null : gameevent_a.sourceEntity().getBukkitEntity(), i, !Bukkit.isPrimaryThread());
|
|
+ level.getCraftServer().getPluginManager().callEvent(event);
|
|
+ if (event.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ i = event.getRadius();
|
|
+ // CraftBukkit end
|
|
int j = SectionPosition.blockToSectionCoord(blockposition.getX() - i);
|
|
int k = SectionPosition.blockToSectionCoord(blockposition.getY() - i);
|
|
int l = SectionPosition.blockToSectionCoord(blockposition.getZ() - i);
|