force output syntax in msize

This commit is contained in:
VorTechnix 2021-07-13 09:08:56 -07:00
parent d69dae5087
commit f94906c854

View file

@ -17,6 +17,6 @@ worldedit.register_command("msize", {
local vec = vector.subtract(worldedit.pos2[name],worldedit.pos1[name])
wea.vector.abs(vec)
return true, str .. wea.table.tostring(vec)
return true, str .. "x: " .. vec.x .. ", y: " .. vec.y .. ", z: " .. vec.z
end,
})