diff --git a/crafts.md b/crafts.md index e1ecd9a..14f2b69 100644 --- a/crafts.md +++ b/crafts.md @@ -11,8 +11,9 @@ tropical wood planks (Hades Revisited). Glass = regular, non-stained glass block. -Glass Pane = regular, non-stained glass pane. For Hades Revisited, use regular -glass. +Glass Pane = regular, non-stained glass pane. For Hades Revisited, if +`hades_extensionmods`/`hades_xpanes` is not available, use regular glass +instead. Steel = steel ingot (Minetest Game, Hades Revisited) or iron ingot (MineClone 2). @@ -193,6 +194,8 @@ Minetest Game, Hades Revisited: Craft from one steel and one tin ingot. MineClone 2: Craft from one iron ingot and one redstone. +If `basic_materials` is installed, its Brass Ingot will be used instead. + ### Brass Chain ``` diff --git a/morelights/init.lua b/morelights/init.lua index 892521e..9f619ac 100644 --- a/morelights/init.lua +++ b/morelights/init.lua @@ -125,6 +125,10 @@ elseif morelights.game == "hades_revisited" then a.glass = "hades_core:glass" -- HR doesn't have glass panes. :( a.glass_pane = "hades_core:glass" + if minetest.get_modpath("hades_xpanes") then + a.glass_pane = "hades_xpanes:pane_flat" + end + a.steel = "hades_core:steel_ingot" a.copper = "hades_core:copper_ingot" a.tin = "hades_core:tin_ingot"