From abd6a4c7097f4086e662b5faaf0e4d0f5ec112c0 Mon Sep 17 00:00:00 2001 From: ShadowNinja Date: Fri, 30 May 2014 17:41:41 -0400 Subject: Centralize position getting and sorting --- chatcommands.lua | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'chatcommands.lua') diff --git a/chatcommands.lua b/chatcommands.lua index dc929f9..3a05a0a 100644 --- a/chatcommands.lua +++ b/chatcommands.lua @@ -7,10 +7,8 @@ minetest.register_chatcommand("protect", { if param == "" then return false, "Invalid usage, see /help protect." end - local pos1, pos2 = areas:getPos1(name), areas:getPos2(name) - if pos1 and pos2 then - pos1, pos2 = areas:sortPos(pos1, pos2) - else + local pos1, pos2 = areas:getPos(name) + if not (pos1 and pos2) then return false, "You need to select an area first." end @@ -45,10 +43,8 @@ minetest.register_chatcommand("set_owner", { return false, "Incorrect usage, see /help set_owner." end - local pos1, pos2 = areas:getPos1(name), areas:getPos2(name) - if pos1 and pos2 then - pos1, pos2 = areas:sortPos(pos1, pos2) - else + local pos1, pos2 = areas:getPos(name) + if not (pos1 and pos2) then return false, "You need to select an area first." end @@ -87,10 +83,8 @@ minetest.register_chatcommand("add_owner", { return end - local pos1, pos2 = areas:getPos1(name), areas:getPos2(name) - if pos1 and pos2 then - pos1, pos2 = areas:sortPos(pos1, pos2) - else + local pos1, pos2 = areas:getPos(name) + if not (pos1 and pos2) then return false, "You need to select an area first." end -- cgit v1.2.3