mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-19 15:09:25 +00:00
28 lines
1.5 KiB
Diff
28 lines
1.5 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Pascalpex <pascalpex@gmail.com>
|
|
Date: Wed, 4 Jun 2025 17:03:32 +0200
|
|
Subject: [PATCH] Add BlockExplosionHitEvent
|
|
|
|
|
|
diff --git a/net/minecraft/world/level/ServerExplosion.java b/net/minecraft/world/level/ServerExplosion.java
|
|
index 6030c4eefd77969a1a9251de76d4291dcb0a2092..f76ec9520f6a2ee42ed3ba65068c01f4b9bc8746 100644
|
|
--- a/net/minecraft/world/level/ServerExplosion.java
|
|
+++ b/net/minecraft/world/level/ServerExplosion.java
|
|
@@ -623,9 +623,13 @@ public class ServerExplosion implements Explosion {
|
|
}
|
|
// CraftBukkit end
|
|
|
|
- this.level
|
|
- .getBlockState(blockPos)
|
|
- .onExplosionHit(this.level, blockPos, this, (itemStack, blockPos1) -> addOrAppendStack(list, itemStack, blockPos1));
|
|
+ // Leaf start - Add BlockExplosionHitEvent
|
|
+ if (new org.dreeam.leaf.event.BlockExplosionHitEvent(CraftLocation.toBukkit(blockPos, bworld).getBlock(), this.source == null ? null : this.source.getBukkitEntity(), org.bukkit.craftbukkit.CraftExplosionResult.toBukkit(this.blockInteraction)).callEvent()) {
|
|
+ this.level
|
|
+ .getBlockState(blockPos)
|
|
+ .onExplosionHit(this.level, blockPos, this, (itemStack, blockPos1) -> addOrAppendStack(list, itemStack, blockPos1));
|
|
+ }
|
|
+ // Leaf end - Add BlockExplosionHitEvent
|
|
}
|
|
|
|
for (ServerExplosion.StackCollector stackCollector : list) {
|