diff options
author | Vanessa Dannenberg <vanessa.e.dannenberg@gmail.com> | 2018-10-30 20:29:28 -0400 |
---|---|---|
committer | Ekdohibs <nathanael.courant@laposte.net> | 2018-11-11 09:54:20 +0100 |
commit | 44cb8df048e09b64214f59db73a3fd23cfe12e77 (patch) | |
tree | aaf4b25fda0f17ff2bb16a1ca62a4010e0598e78 /extranodes/init.lua | |
parent | f702a6597ba86569ebd894a1698608f60418f634 (diff) |
use basic_materials mod where possible.
Diffstat (limited to 'extranodes/init.lua')
-rw-r--r-- | extranodes/init.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extranodes/init.lua b/extranodes/init.lua index 1f65c29..5d8b260 100644 --- a/extranodes/init.lua +++ b/extranodes/init.lua @@ -30,7 +30,7 @@ if minetest.get_modpath("moreblocks") then stairsplus:register_all("technic", "concrete", "technic:concrete", { description=S("Concrete"), groups={cracky=3, not_in_creative_inventory=1}, - tiles={"technic_concrete_block.png"}, + tiles={"basic_materials_concrete_block.png"}, }) stairsplus:register_all("technic", "zinc_block", "technic:zinc_block", { @@ -57,10 +57,10 @@ if minetest.get_modpath("moreblocks") then tiles={"technic_stainless_steel_block.png"}, }) - stairsplus:register_all("technic", "brass_block", "technic:brass_block", { + stairsplus:register_all("technic", "brass_block", "basic_materials:brass_block", { description=S("Brass Block"), groups={cracky=1, not_in_creative_inventory=1}, - tiles={"technic_brass_block.png"}, + tiles={"basic_materials_brass_block.png"}, }) function register_technic_stairs_alias(modname, origname, newmod, newname) |