From 559bac3483a347526edaec7ed2e7e2ea240b22ee Mon Sep 17 00:00:00 2001 From: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> Date: Sat, 5 Oct 2024 17:44:35 +1000 Subject: [PATCH] Fix Example Upgrade Transfer --- src/main/groovy-tests/customRecipeClassTests.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/groovy-tests/customRecipeClassTests.groovy b/src/main/groovy-tests/customRecipeClassTests.groovy index d302b9e..d19e09f 100644 --- a/src/main/groovy-tests/customRecipeClassTests.groovy +++ b/src/main/groovy-tests/customRecipeClassTests.groovy @@ -50,7 +50,7 @@ nbtClearingRecipe(item('forge:bucketfilled'), item('minecraft:bucket')) nbtClearingRecipe(item('storagedrawers:basicdrawers'), { var tag = transferSubTags(it, 'material') // Transfer material, saved generated tag transferTagAtPath(it, tag, "tile", "Mat") // Transfer other stored material - transferTagAtPath(it, tag, "tile", "upgrades") // Transfer upgrades as well + transferTagAtPath(it, tag, "tile", "Upgrades") // Transfer upgrades as well it.tagCompound = tag // Remember to Save! })