"explode" all modpacks into their individual components
(you can't have a modpack buried inside a modpack)
This commit is contained in:
2
steelsupport/depends.txt
Normal file
2
steelsupport/depends.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
default
|
||||
streetsmod
|
20
steelsupport/init.lua
Normal file
20
steelsupport/init.lua
Normal file
@@ -0,0 +1,20 @@
|
||||
--[[
|
||||
StreetsMod: Steel support for hanging signs on highways etc.
|
||||
]]
|
||||
minetest.register_node(":streets:steel_support",{
|
||||
description = streets.S("Steel support"),
|
||||
tiles = {"streets_support.png"},
|
||||
groups = {cracky = 1},
|
||||
drawtype = "glasslike_framed",
|
||||
climbable = true,
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "streets:steel_support 5",
|
||||
recipe = {
|
||||
{"default:steel_ingot","","default:steel_ingot"},
|
||||
{"","default:steel_ingot",""},
|
||||
{"default:steel_ingot","","default:steel_ingot"}
|
||||
}
|
||||
})
|
Reference in New Issue
Block a user