From 2bf2e4406af74d8c15563bb68d3d78069aad25a2 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 11 Mar 2017 03:03:35 +0100 Subject: [PATCH] Add help text for droppers --- mods/ITEMS/REDSTONE/mcl_droppers/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/ITEMS/REDSTONE/mcl_droppers/init.lua b/mods/ITEMS/REDSTONE/mcl_droppers/init.lua index 7c4fc1daa..19ff8c0ac 100644 --- a/mods/ITEMS/REDSTONE/mcl_droppers/init.lua +++ b/mods/ITEMS/REDSTONE/mcl_droppers/init.lua @@ -96,6 +96,8 @@ local dropperdef = { local horizontal_def = table.copy(dropperdef) horizontal_def.description = "Dropper" +horizontal_def._doc_items_longdesc = "A dropper is a redstone component and a container with 9 inventory slots which, when supplied with redstone power, drops an item or puts it into a container in front of it." +horizontal_def._doc_items_usagehelp = "Droppers can be placed in 6 possible directions, items will be dropped out of the hole. Rightclick the dropper to access its inventory. Supply it with redstone energy once to make the dropper drop or transfer a random item." horizontal_def.after_place_node = function(pos, placer, itemstack, pointed_thing) setup_dropper(pos)