From 72172749224f12769618db13770d3811da3846c4 Mon Sep 17 00:00:00 2001 From: Paul Schifferer Date: Tue, 3 Dec 2024 18:16:34 -0800 Subject: [PATCH] Logging --- .../java/com/sweetrpg/crafttracker/common/util/RecipeUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/sweetrpg/crafttracker/common/util/RecipeUtil.java b/src/main/java/com/sweetrpg/crafttracker/common/util/RecipeUtil.java index 9a3ae43..e573379 100644 --- a/src/main/java/com/sweetrpg/crafttracker/common/util/RecipeUtil.java +++ b/src/main/java/com/sweetrpg/crafttracker/common/util/RecipeUtil.java @@ -187,7 +187,7 @@ public static float calculateItemCost(ItemStack stack) { // if the item's namespace is not 'minecraft:', increase the cost if(!ObjectUtils.defaultIfNull(stack.getItem().getRegistryName().getNamespace(), "").equals("minecraft") && !ObjectUtils.defaultIfNull(tagId.getNamespace(), "").equals("minecraft")) { - CraftTracker.LOGGER.debug("RecipeUtil#calculateRecipeCost: increasing cost ({}) of non-vanilla item {} by {}", + CraftTracker.LOGGER.debug("RecipeUtil#calculateItemCost: increasing cost ({}) of non-vanilla item {} by {}", cost, tagId, NON_VANILLA_COST_MULTIPLIER); cost *= NON_VANILLA_COST_MULTIPLIER; }