1
0
Fork 0

don't run block fixes at all in singlenode

This commit is contained in:
cora 2022-10-13 23:08:05 +02:00
parent 2a10be4174
commit a8a55f9d6e
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ mcl_mapgen_core.register_generator("end_fixes", end_basic, function(minp,maxp)
if maxp.y < mcl_vars.mg_end_min or minp.y > mcl_vars.mg_end_max then return end
end, 9999, true)
if mg_name ~= "v6" then
if mg_name ~= "v6" and mg_name ~= "singlenode" then
mcl_mapgen_core.register_generator("block_fixes", block_fixes, nil, 9999, true)
end