Namespacing pt. 2

This commit is contained in:
2022-11-22 02:03:45 -05:00
parent b1fa8c6a75
commit 3c5b6ee4bc
485 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
default?
sounds
streetsmod

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"}
}
})