From 88ed7b5a7fdeedbcecdf32f77e177bc925bb9811 Mon Sep 17 00:00:00 2001 From: sys4 Date: Sun, 14 Jun 2020 15:42:23 +0200 Subject: [PATCH] =?UTF-8?q?Supprime=20la=20g=C3=A9n=C3=A9ration=20des=20ca?= =?UTF-8?q?rottes=20et=20du=20ma=C3=AFs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mapgen.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mapgen.lua b/mapgen.lua index 6d8278d..6fffac9 100644 --- a/mapgen.lua +++ b/mapgen.lua @@ -34,7 +34,7 @@ end -- add crops to mapgen register_plant("potato_3", 15, 40, nil, "", -1, farming.potato) register_plant("tomato_7", 5, 20, nil, "", -1, farming.tomato) -register_plant("corn_7", 12, 22, nil, "", -1, farming.corn) +register_plant("corn_7", 12, 22, nil, "", -1, nil) register_plant("coffee_5", 20, 45, {"default:dirt_with_dry_grass", "default:dirt_with_rainforest_litter"}, "", -1, farming.coffee) register_plant("raspberry_4", 3, 10, nil, "", -1, farming.raspberry) @@ -56,7 +56,7 @@ if minetest.get_mapgen_setting("mg_name") == "v6" then register_plant("pumpkin_8", 1, 20, nil, "group:water", 1, farming.pumpkin) else -- v7 maps have a beach so plants growing near water is limited to 6 high - register_plant("carrot_8", 1, 15, nil, "", -1, farming.carrot) + register_plant("carrot_8", 1, 15, nil, "", -1, nil) register_plant("cucumber_4", 1, 10, nil, "", -1, farming.cucumber) register_plant("melon_8", 1, 6, {"default:dirt_with_dry_grass", "default:dirt_with_rainforest_litter"}, "", -1, farming.melon)