summaryrefslogtreecommitdiff
path: root/markers/marker_stone.lua
blob: c687502418bc3d03fd64a600d316d087a500cc20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

minetest.register_node("markers:stone", {
	description = "Boundary marker for land administration",
	tiles = {"markers_stone.png", "markers_stone.png", "markers_stone_side.png",
                "markers_stone_side.png", "markers_stone_side.png", "markers_stone_side.png" },
-- no facedir here - we want a fixed north indication!
--	paramtype2 = "facedir",
	groups = {cracky=2},
	legacy_facedir_simple = true,
	is_ground_content = false,

	on_rightclick = function(pos, node, clicker)

           markers.show_marker_stone_formspec( clicker, pos );
	end,
})


minetest.register_craft({
   output = "markers:stone",
   recipe = { { "markers:mark" },
              { "default:cobble" },
             } });