From 5430860cdf5e366c5f028280a5aff13b2f828a46 Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Wed, 30 Oct 2024 18:35:35 -0700 Subject: [PATCH] Keep vanilla method --- .../net/minecraft/world/level/ServerExplosion.java.patch | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/patches/net/minecraft/world/level/ServerExplosion.java.patch b/patches/net/minecraft/world/level/ServerExplosion.java.patch index 210b558757..871697a696 100644 --- a/patches/net/minecraft/world/level/ServerExplosion.java.patch +++ b/patches/net/minecraft/world/level/ServerExplosion.java.patch @@ -1,10 +1,14 @@ --- a/net/minecraft/world/level/ServerExplosion.java +++ b/net/minecraft/world/level/ServerExplosion.java -@@ -165,7 +_,7 @@ +@@ -165,7 +_,12 @@ return new ObjectArrayList<>(set); } -- private void hurtEntities() { ++ @Deprecated + private void hurtEntities() { ++ this.hurtEntities(List.of()); ++ } ++ + private void hurtEntities(List blocks) { float f = this.radius * 2.0F; int i = Mth.floor(this.center.x - (double)f - 1.0);