//subdivide: fix emerge_area to only emerge individual chunked areas

This commit is contained in:
Starbeamrainbowlabs 2021-02-05 23:44:33 +00:00
parent 38e5c81d33
commit ebed73fc49
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ local function subdivide_step_beforeload(state)
if state.cpos1.z < state.pos1.z then state.cpos1.z = state.pos1.z end
state.times.emerge_last = wea.get_ms_time()
worldeditadditions.emerge_area(state.pos1, state.pos2, state.__afterload, state)
worldeditadditions.emerge_area(state.cpos1, state.cpos2, state.__afterload, state)
end
local function subdivide_step_afterload(state_emerge, state_ours)