From be9be17d970513f54c541d63c7ae926b70bc5fe6 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 12 Aug 2017 01:49:37 +0200 Subject: [PATCH] Make ice spikes less destructive --- mods/MAPGEN/mcl_structures/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/MAPGEN/mcl_structures/init.lua b/mods/MAPGEN/mcl_structures/init.lua index cf7a71e11..5b55afb9e 100644 --- a/mods/MAPGEN/mcl_structures/init.lua +++ b/mods/MAPGEN/mcl_structures/init.lua @@ -204,7 +204,7 @@ end mcl_structures.generate_ice_spike_small = function(pos) local path = minetest.get_modpath("mcl_structures").."/schematics/mcl_structures_ice_spike_small.mts" - minetest.place_schematic(pos, path, "random", nil, true) + minetest.place_schematic(pos, path, "random", nil, false) end mcl_structures.generate_ice_spike_large = function(pos) @@ -249,7 +249,7 @@ mcl_structures.generate_ice_spike_large = function(pos) if top then local toppos = {x=pos.x-1, y=pos.y+h, z=pos.z-1} local path = minetest.get_modpath("mcl_structures").."/schematics/mcl_structures_ice_spike_large_top.mts" - minetest.place_schematic(toppos, path, "random", nil, true) + minetest.place_schematic(toppos, path, "random") end end