Centralize position getting and sorting

This commit is contained in:
ShadowNinja
2014-05-30 17:41:41 -04:00
parent 02905caaeb
commit abd6a4c709
2 changed files with 12 additions and 18 deletions

12
pos.lua
View File

@ -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)