From 94292e6cca304546c893d43fc2ee7b066fc9d651 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 1 Dec 2023 02:23:27 +0100 Subject: better command usage --- src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/test') diff --git a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt index de6ffef21..1a53e8283 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt @@ -344,13 +344,13 @@ class SkyHanniDebugsAndTests { fun copyItemInternalName() { val hand = InventoryUtils.getItemInHand() if (hand == null) { - LorenzUtils.chat("§cNo item in hand!") + LorenzUtils.userError("No item in hand!") return } val internalName = hand.getInternalNameOrNull() if (internalName == null) { - LorenzUtils.chat("§cInternal name is null for item ${hand.name}") + LorenzUtils.error("§cInternal name is null for item ${hand.name}") return } -- cgit