mirror of
https://github.com/random-geek/morelights.git
synced 2024-11-27 01:23:44 +01:00
Use hades_xpanes panes if available.
This commit is contained in:
parent
02578ce56f
commit
b055570244
@ -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
|
||||
|
||||
```
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user