From d873b7974d78b44dc297e4c377602df3d3032c35 Mon Sep 17 00:00:00 2001 From: BrunoMine Date: Wed, 3 Aug 2016 12:00:23 -0300 Subject: [PATCH] =?utf8?q?Bug=20de=20vari=C3=A1vel=20areas=20corrigido?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- protetor.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protetor.lua b/protetor.lua index 388c465..8d5821f 100644 --- a/protetor.lua +++ b/protetor.lua @@ -12,7 +12,7 @@ -- Proteger uma area gestor.proteger_area = function(name, PlayerName, AreaName, pos1, pos2, silencio) if not tostring(PlayerName) or not tostring(AreaName) then return "Faltam argumentos ou estao incorretos" end - if not areas or not area.add then return "Faltou mod areas" end + if not areas or not areas.add then return "Faltou mod areas" end local param = tostring(PlayerName).." "..tostring(AreaName) local found, _, ownername, areaname = param:find('^([^ ]+) (.+)$') -- 2.11.4.GIT