From 838b126cea7a3c737c7d382d99f7a86887fb8942 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 20 Mar 2017 18:15:08 +0100 Subject: [PATCH] Add Help alias for lit redstone ore --- mods/ITEMS/mcl_core/nodes.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mods/ITEMS/mcl_core/nodes.lua b/mods/ITEMS/mcl_core/nodes.lua index 24d7d1fe6..8ff57b9d9 100644 --- a/mods/ITEMS/mcl_core/nodes.lua +++ b/mods/ITEMS/mcl_core/nodes.lua @@ -189,6 +189,11 @@ minetest.register_node("mcl_core:stone_with_redstone_lit", { _mcl_hardness = 3, }) +-- Add entry alias for the Help +if minetest.get_modpath("doc") then + doc.add_entry_alias("nodes", "mcl_core:stone_with_redstone", "nodes", "mcl_core:stone_with_redstone_lit") +end + minetest.register_node("mcl_core:stone_with_lapis", { description = "Lapis Lazuli Ore", _doc_items_longdesc = "Lapis lazuli ore is the ore of lapis lazuli. It can be rarely found in clusters near the bottom of the world.",