mirror of
https://github.com/minetest-mods/nether.git
synced 2024-12-27 19:30:28 +01:00
A fix for Netherrack slab being called Deep Netherrack slab (#63)
* fix netherrack slab being called Deep Netherrack * Fix several lowercase block names Several slabs and stairs were incorrectly named.
This commit is contained in:
parent
957fdc887b
commit
9c1fa2c843
@ -79,6 +79,7 @@ Nether geode crystal. A crystalline structure with faint glow found inside large
|
|||||||
|
|
||||||
Netherrack=Roche du Nether
|
Netherrack=Roche du Nether
|
||||||
Netherrack from deep in the mantle=
|
Netherrack from deep in the mantle=
|
||||||
|
Netherrack Slab=
|
||||||
Netherrack stair=
|
Netherrack stair=
|
||||||
Nethersand=Sable du Nether
|
Nethersand=Sable du Nether
|
||||||
Outer Deep Nether Stair=
|
Outer Deep Nether Stair=
|
||||||
|
@ -78,6 +78,7 @@ Nether geode crystal. A crystalline structure with faint glow found inside large
|
|||||||
|
|
||||||
Netherrack=
|
Netherrack=
|
||||||
Netherrack from deep in the mantle=
|
Netherrack from deep in the mantle=
|
||||||
|
Netherrack Slab=
|
||||||
Netherrack stair=
|
Netherrack stair=
|
||||||
Nethersand=
|
Nethersand=
|
||||||
Outer Deep Nether Stair=
|
Outer Deep Nether Stair=
|
||||||
|
12
nodes.lua
12
nodes.lua
@ -383,7 +383,7 @@ stairs.register_stair(
|
|||||||
"nether:rack",
|
"nether:rack",
|
||||||
{cracky = 2, level = 2},
|
{cracky = 2, level = 2},
|
||||||
{"nether_rack.png"},
|
{"nether_rack.png"},
|
||||||
S("Netherrack stair"),
|
S("Netherrack Stair"),
|
||||||
minetest.registered_nodes["nether:rack"].sounds
|
minetest.registered_nodes["nether:rack"].sounds
|
||||||
)
|
)
|
||||||
stairs.register_slab( -- register a slab without adding inner and outer stairs
|
stairs.register_slab( -- register a slab without adding inner and outer stairs
|
||||||
@ -391,7 +391,7 @@ stairs.register_slab( -- register a slab without adding inner and outer stairs
|
|||||||
"nether:rack",
|
"nether:rack",
|
||||||
{cracky = 2, level = 2},
|
{cracky = 2, level = 2},
|
||||||
{"nether_rack.png"},
|
{"nether_rack.png"},
|
||||||
S("Deep Netherrack slab"),
|
S("Netherrack Slab"),
|
||||||
minetest.registered_nodes["nether:rack"].sounds
|
minetest.registered_nodes["nether:rack"].sounds
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -400,7 +400,7 @@ stairs.register_stair(
|
|||||||
"nether:rack_deep",
|
"nether:rack_deep",
|
||||||
{cracky = 2, level = 2},
|
{cracky = 2, level = 2},
|
||||||
{"nether_rack_deep.png"},
|
{"nether_rack_deep.png"},
|
||||||
S("Deep Netherrack stair"),
|
S("Deep Netherrack Stair"),
|
||||||
minetest.registered_nodes["nether:rack_deep"].sounds
|
minetest.registered_nodes["nether:rack_deep"].sounds
|
||||||
)
|
)
|
||||||
stairs.register_slab( -- register a slab without adding inner and outer stairs
|
stairs.register_slab( -- register a slab without adding inner and outer stairs
|
||||||
@ -408,14 +408,14 @@ stairs.register_slab( -- register a slab without adding inner and outer stairs
|
|||||||
"nether:rack_deep",
|
"nether:rack_deep",
|
||||||
{cracky = 2, level = 2},
|
{cracky = 2, level = 2},
|
||||||
{"nether_rack_deep.png"},
|
{"nether_rack_deep.png"},
|
||||||
S("Deep Netherrack slab"),
|
S("Deep Netherrack Slab"),
|
||||||
minetest.registered_nodes["nether:rack_deep"].sounds
|
minetest.registered_nodes["nether:rack_deep"].sounds
|
||||||
)
|
)
|
||||||
|
|
||||||
-- Connecting walls
|
-- Connecting walls
|
||||||
if minetest.get_modpath("walls") and minetest.global_exists("walls") and walls.register ~= nil then
|
if minetest.get_modpath("walls") and minetest.global_exists("walls") and walls.register ~= nil then
|
||||||
walls.register("nether:rack_wall", S("A Netherrack wall"), "nether_rack.png", "nether:rack", minetest.registered_nodes["nether:rack"].sounds)
|
walls.register("nether:rack_wall", S("A Netherrack Wall"), "nether_rack.png", "nether:rack", minetest.registered_nodes["nether:rack"].sounds)
|
||||||
walls.register("nether:rack_deep_wall", S("A Deep Netherrack wall"), "nether_rack_deep.png", "nether:rack_deep", minetest.registered_nodes["nether:rack_deep"].sounds)
|
walls.register("nether:rack_deep_wall", S("A Deep Netherrack Wall"), "nether_rack_deep.png", "nether:rack_deep", minetest.registered_nodes["nether:rack_deep"].sounds)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- StairsPlus
|
-- StairsPlus
|
||||||
|
Loading…
Reference in New Issue
Block a user