mirror of
https://github.com/minetest-mods/nether.git
synced 2024-12-27 19:30:28 +01:00
StairsPlus support for nether bricks. (#19)
This commit is contained in:
parent
e230813af8
commit
589f305d08
@ -1,2 +1,3 @@
|
||||
stairs
|
||||
default
|
||||
moreblocks?
|
||||
|
11
init.lua
11
init.lua
@ -483,6 +483,17 @@ stairs.register_stair_and_slab(
|
||||
default.node_sound_stone_defaults()
|
||||
)
|
||||
|
||||
-- StairsPlus
|
||||
|
||||
if minetest.get_modpath("moreblocks") then
|
||||
stairsplus:register_all(
|
||||
"nether", "brick", "nether:brick", {
|
||||
description = "Nether Brick",
|
||||
groups = {cracky = 2, level = 2},
|
||||
tiles = {"nether_brick.png"},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
end
|
||||
|
||||
-- Craftitems
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user