From 25bf1ab839f57298f9a412b0da4f476e02e336f8 Mon Sep 17 00:00:00 2001 From: IzzelAliz Date: Mon, 3 Oct 2022 12:18:30 +0800 Subject: [PATCH] Remove block break debug output --- .../io/izzel/arclight/common/mod/util/ArclightCaptures.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/arclight-common/src/main/java/io/izzel/arclight/common/mod/util/ArclightCaptures.java b/arclight-common/src/main/java/io/izzel/arclight/common/mod/util/ArclightCaptures.java index adc51a2e..610ff6d3 100644 --- a/arclight-common/src/main/java/io/izzel/arclight/common/mod/util/ArclightCaptures.java +++ b/arclight-common/src/main/java/io/izzel/arclight/common/mod/util/ArclightCaptures.java @@ -1,7 +1,6 @@ package io.izzel.arclight.common.mod.util; import io.izzel.arclight.common.mod.ArclightConstants; -import io.izzel.arclight.common.mod.ArclightMod; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.server.level.ServerLevel; @@ -79,7 +78,7 @@ public class ArclightCaptures { } if (unhandledEvents.size() > 0) { - ArclightMod.LOGGER.warn("Unhandled secondary block break event"); + // ArclightMod.LOGGER.warn("Unhandled secondary block break event"); eventContext.mergeAllDrops(unhandledEvents); } @@ -101,7 +100,7 @@ public class ArclightCaptures { public static void clearBlockBreakEventContexts() { if (!blockBreakEventStack.empty()) { - ArclightMod.LOGGER.warn("Unhandled block break event"); + // ArclightMod.LOGGER.warn("Unhandled block break event"); blockBreakEventStack.clear(); } }