Added support for circular_saw (concrete)

master
Christian Danscheid 2013-08-15 20:11:01 +02:00
parent a568333805
commit 6db1a35ef1
3 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,4 @@
default
streetsmod
stairs?
stairs?
moreblocks?

View File

@ -1,8 +1,9 @@
--[[
StreetsMod: Concrete stairs (not compatible to circular_saw
StreetsMod: Concrete stairs (compatible to circular saw)
]]
if streets.extendedBy.stairs == true and streets.extendedBy.prefab == false then
stairs.register_stair_and_slab("concrete", "streets:concrete", {cracky = 2, level = 2}, {"streets_concrete.png"}, "Concrete stair", "Concrete slab", nil)
if streets.extendedBy.moreblocks == true and streets.extendedBy.prefab == false then
register_stair_slab_panel_micro("streets", "concrete", "streets:concrete", {cracky=2}, {"streets_concrete.png"}, "Concrete", "", nil)
table.insert(circular_saw.known_stairs,"streets:concrete")
else
minetest.register_alias("stairs:stair_concrete","prefab:concrete_stair")
minetest.register_alias("stairs:slab_concrete","prefab:concrete_slab")

View File

@ -29,11 +29,11 @@
streets.extendedBy.technic = false
end
if minetest.get_modpath("stairs") then
print("'Stairs' is installed \n\t => There will be stairs and slabs'")
streets.extendedBy.stairs = true
print("'Moreblocks' is installed \n\t => There will be stairs and slabs'")
streets.extendedBy.moreblocks = true
else
print("'Stairs' not installed \n\t => There won't be stairs and slabs'")
streets.extendedBy.stairs = false
print("'Moreblocks' not installed \n\t => There won't be stairs and slabs'")
streets.extendedBy.moreblocks = false
end
if minetest.get_modpath("bucket") then
print("'Bucket' is installed \n\t => All signs are available")