Fixed a typo.

This commit is contained in:
Joseph Pickard 2016-01-10 16:01:04 -05:00
parent f77d7743eb
commit 609ad76a51
1 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ end
function areas:setPos1(playerName, pos)
if areas.useWorldedit(playerName) then
worldedit.pos1[playerName] = pos;
worldedit.mark_pos1(name);
worldedit.mark_pos1(playerName);
else
areas.pos1[playerName] = pos
areas.markPos1(playerName)
@ -159,7 +159,7 @@ end
function areas:setPos2(playerName, pos)
if areas.useWorldedit(playerName) then
worldedit.pos2[playerName] = pos;
worldedit.mark_pos2(name);
worldedit.mark_pos2(playerName);
else
areas.pos2[playerName] = pos
areas.markPos2(playerName)