From aa0e839c7c856ff28666edf96ceccb795c5075bf Mon Sep 17 00:00:00 2001 From: Light_Quanta Date: Sun, 13 Jul 2025 00:20:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E7=AB=AF=E7=A6=81=E7=94=A8?= =?UTF-8?q?=E5=87=BB=E6=9D=80=E6=8F=90=E7=A4=BA=E6=97=B6=E4=B8=8D=E5=86=8D?= =?UTF-8?q?=E5=8F=91=E9=80=81=E5=87=BB=E6=9D=80=E9=9F=B3=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/atsuishio/superbwarfare/event/LivingEventHandler.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/atsuishio/superbwarfare/event/LivingEventHandler.java b/src/main/java/com/atsuishio/superbwarfare/event/LivingEventHandler.java index f61d05326..9735cc527 100644 --- a/src/main/java/com/atsuishio/superbwarfare/event/LivingEventHandler.java +++ b/src/main/java/com/atsuishio/superbwarfare/event/LivingEventHandler.java @@ -266,6 +266,8 @@ public class LivingEventHandler { } private static void killIndication(LivingDeathEvent event) { + if (!MiscConfig.SEND_KILL_FEEDBACK.get()) return; + DamageSource source = event.getSource(); var sourceEntity = source.getEntity();