summaryrefslogtreecommitdiff
path: root/pos.lua
diff options
context:
space:
mode:
Diffstat (limited to 'pos.lua')
-rw-r--r--pos.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/pos.lua b/pos.lua
index 3dbf07c..e4f2d25 100644
--- a/pos.lua
+++ b/pos.lua
@@ -118,12 +118,12 @@ minetest.register_chatcommand("area_pos", {
end,
})
-function areas:getPos1(playerName)
- return areas.pos1[playerName]
-end
-
-function areas:getPos2(playerName)
- return areas.pos2[playerName]
+function areas:getPos(playerName)
+ local pos1, pos2 = areas.pos1[playerName], areas.pos2[playerName]
+ if not (pos1 and pos2) then
+ return nil
+ end
+ return areas:sortPos(pos1, pos2)
end
function areas:setPos1(playerName, pos)