From 68eea105976c2d10dea1889f6f836becbd751a49 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 7 Dec 2018 21:43:12 +0100 Subject: [PATCH] Update mcl_walls API docs --- mods/ITEMS/mcl_walls/API.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/ITEMS/mcl_walls/API.md b/mods/ITEMS/mcl_walls/API.md index 9efb8ce2c..e6956ac47 100644 --- a/mods/ITEMS/mcl_walls/API.md +++ b/mods/ITEMS/mcl_walls/API.md @@ -20,9 +20,9 @@ If `craft_material` is not `nil` it also adds a crafting recipe of the following ### Parameters * `nodename`: Full itemstring of the new wall node (base node only). ***Must not have an underscore!*** * `description`: Item description of item (tooltip), visible to user -* `craft_material`: Item to be used in the crafting recipe. If `nil`, no crafting recipe will be added -* `tiles`: Wall textures table, same syntax as for `minetest.register_node` -* `inventory_image`: Inventory image (optional, default is an ugly 3D image) +* `source`: Node on which the wall is based off, use for texture and crafting recipe (optional) +* `tiles`: Wall textures table, same syntax as for `minetest.register_node` (optional if `source` is set) +* `inventory_image`: Inventory image (optional if `source` is set) * `groups`: Base group memberships (optional, default is `{pickaxey=1}`) * `sounds`: Sound table (optional, by default default uses stone sounds)