This commit is contained in:
Julian Brammer 2024-06-12 21:51:29 +02:00
parent f95dee3521
commit 8ed0a2bf39

View File

@ -50,8 +50,8 @@ for k,v in pairs(lines) do
xStr = string.sub(v, xStart+3, xEnd-1)
yStr = string.sub(v, yStart+3, yEnd-1)
x = tonumber(xStr)
y = tonumber(yStr)
x = tonumber(xStr) / steps
y = tonumber(yStr) / steps
print(x .. " " .. y)
end