"explode" all modpacks into their individual components

(you can't have a modpack buried inside a modpack)
This commit is contained in:
Vanessa Ezekowitz
2016-04-01 21:00:20 -04:00
parent da66780a56
commit 888b0ebfec
3279 changed files with 21 additions and 4769 deletions

2
steelsupport/depends.txt Normal file
View File

@@ -0,0 +1,2 @@
default
streetsmod

20
steelsupport/init.lua Normal file
View 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"}
}
})