diff options
author | Sokomine <wegwerf@anarres.dyndns.org> | 2014-01-02 05:52:14 +0100 |
---|---|---|
committer | Sokomine <wegwerf@anarres.dyndns.org> | 2014-01-02 05:52:14 +0100 |
commit | 2edda7a9f998a921770ffe47c4b7f96112af1f46 (patch) | |
tree | 8b0adf92aad4c7d9e20f233dc158bd9f5336afdb /marker_stone.lua | |
parent | c503f1b4b12b4de404619c561c43e67671cf76e1 (diff) |
land title register works now; stone and register try to guess which area is right; correced accidental north/south switch in display
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, }) |