Lua location_set: fix a variable name

This commit is contained in:
mattsc 2021-03-06 10:53:02 -08:00
parent 200f5dd913
commit 44e279cb2f

View file

@ -22,7 +22,7 @@ function locset_meta:__index(loc)
if type(loc) == 'string' then
return methods[loc]
elseif loc.x and loc.y then
return self:get(loc.x, lov.y)
return self:get(loc.x, loc.y)
else
return self:get(loc[1], loc[2])
end