mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-06-28 05:50:17 +02:00
AND block changed! Now in its own dir. Also, auto power on (NOT off) has been added.
This commit is contained in:
@ -243,29 +243,4 @@ if ENABLE_TEMPEREST==1 then
|
||||
})
|
||||
end
|
||||
|
||||
--End Temperest's code
|
||||
|
||||
--Whiskers75's code
|
||||
--AND block
|
||||
|
||||
-- Make the block:
|
||||
|
||||
minetest.register_node("mesecons_temperest:andblock", {
|
||||
description = "AND block",
|
||||
drawtype = "raillike",
|
||||
tile_images = {"whiskers75andblock.png"},
|
||||
inventory_image = {"whiskers75andblock.png"},
|
||||
sunlight_propagates = true,
|
||||
paramtype = 'light',
|
||||
walkable = true,
|
||||
groups = {dig_immediate=2},
|
||||
material = minetest.digprop_constanttime(1.0),
|
||||
})
|
||||
|
||||
minetest.register_on_punchnode(function(pos, node, puncher)
|
||||
if node.name=="mesecons_temperest:andblock" then
|
||||
anode = minetest.env:get_node({x=pos.x-1, y=pos.y, z=pos.z})
|
||||
bnode = minetest.env:get_node({x=pos.x+1, y=pos.y, z=pos.z})
|
||||
if anode.name=="mesecons:mesecon_on" and bnode.name=="mesecons:mesecon_on" then mesecon:receptor_on({x=pos.x, y=pos.y+1, z=pos.z}) end
|
||||
end
|
||||
end)
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 364 B |
Reference in New Issue
Block a user