Skip to content

Commit

Permalink
Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
paulyhedral committed Dec 4, 2024
1 parent f6f34e2 commit 7217274
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 7217274

Please sign in to comment.