diff options
Diffstat (limited to 'marker_stone.lua')
-rw-r--r-- | marker_stone.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/marker_stone.lua b/marker_stone.lua index 0c7c926..c687502 100644 --- a/marker_stone.lua +++ b/marker_stone.lua @@ -11,10 +11,7 @@ minetest.register_node("markers:stone", { on_rightclick = function(pos, node, clicker) - minetest.show_formspec( clicker:get_player_name(), "markers:info", - markers.get_area_list_formspec( clicker, 'pos', pos, pos, nil )); - return; - + markers.show_marker_stone_formspec( clicker, pos ); end, }) |