handle water_source in mg mapgen

This commit is contained in:
Sokomine 2020-10-01 22:22:12 +02:00
parent fb0b0ba6e5
commit ff6acc2b1a

View File

@ -192,3 +192,8 @@ end
-- many people prefer the new 3d torch even if it will melt some snow -- many people prefer the new 3d torch even if it will melt some snow
handle_schematics.global_replacement_table[ 'mg_villages:torch' ] = 'default:torch'; handle_schematics.global_replacement_table[ 'mg_villages:torch' ] = 'default:torch';
-- for the mg mapgen
if(minetest.registered_nodes['default:mg_water_source']) then
handle_schematics.global_replacement_table[ 'default:water_source' ] = 'default:mg_water_source';
end