From 63643b3b2a055650f232ade626f62dca4c4bf328 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sun, 31 Mar 2019 10:23:18 +0200 Subject: [PATCH] missing the array whoops --- CraftTweakerCompat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CraftTweakerCompat.md b/CraftTweakerCompat.md index 8ae9fd6d..646492b8 100644 --- a/CraftTweakerCompat.md +++ b/CraftTweakerCompat.md @@ -13,7 +13,7 @@ __The replacement recipe that is added for any given item inside of Nature's Aur As an example, the following piece of code will remove the existing recipe of the Imperceptible Builder and replace it with a new one. Checking its Book of Natural Aura entry will then also display the new recipe correctly without errors. ``` recipes.remove(); -recipes.addShapeless("placer", , , ); +recipes.addShapeless("placer", , [, ]); ``` Note that the name of the recipe is supplied as `placer` because the item id of the Imperceptible Builder is `naturesaura:placer`. Not doing this would lead to the Book of Natural Aura not displaying the new recipe.