Fix exporting the wrong Y values for Y slices

This commit is contained in:
Wuzzy 2022-05-13 23:53:07 +02:00
parent 100f3c65c5
commit b221493219
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ schemedit.add_form("main", {
local slice_list = {}
for _, i in pairs(slist) do
slice_list[#slice_list + 1] = {
ypos = pos.y + i.ypos,
ypos = i.ypos,
prob = schemedit.lua_prob_to_schematic_prob(i.prob),
}
end