From 6d3db925a0b3b0e2933ba20da0fa498ba34d8cff Mon Sep 17 00:00:00 2001 From: nanepiwo Date: Mon, 25 May 2015 21:17:47 -0400 Subject: [PATCH 1/4] Add dependency It depends on default to craft the markers and area stones :) --- depends.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/depends.txt b/depends.txt index a18cd91..e728c8f 100644 --- a/depends.txt +++ b/depends.txt @@ -1 +1,2 @@ areas +default From d79a7eaa2d118aae20fe78f3058f90aa88ad5a65 Mon Sep 17 00:00:00 2001 From: Isidor Zeuner Date: Tue, 10 Oct 2017 09:48:09 +0200 Subject: [PATCH 2/4] add mod.conf --- mod.conf | 1 + 1 file changed, 1 insertion(+) create mode 100644 mod.conf diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..5fd7d34 --- /dev/null +++ b/mod.conf @@ -0,0 +1 @@ +name = markers From 2aa828455862d939d293fb47ebb0fb6263055708 Mon Sep 17 00:00:00 2001 From: blaboing <56389853+blaboing@users.noreply.github.com> Date: Fri, 20 Jan 2023 22:02:20 +0100 Subject: [PATCH 3/4] add missing mod.conf --- mod.conf | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mod.conf diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..2bae44d --- /dev/null +++ b/mod.conf @@ -0,0 +1,3 @@ +name = markers +description = markers for the Minetest mod "areas" +depends = areas From d2091badd7aae8d5c5a6f2bb4bf7b46fa7c9c290 Mon Sep 17 00:00:00 2001 From: Sokomine Date: Sun, 22 Jan 2023 22:43:47 +0100 Subject: [PATCH 4/4] replaced deprecated getpos function --- areas.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/areas.lua b/areas.lua index f804f7f..b2c833a 100644 --- a/areas.lua +++ b/areas.lua @@ -478,7 +478,7 @@ end markers.form_input_handler_areas = function( player, formname, fields) local pname = player:get_player_name(); - local ppos = player:getpos() + local ppos = player:get_pos() if( formname ~= "markers:info" or not( player )