From 8f5dac38dca20da23198606f0895f05c03ff03cf Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Thu, 26 Apr 2018 14:31:29 +0100 Subject: [PATCH] pumba spawns on grass for v6, dry grass for v7 or mushroom dirt for ethereal --- warthog.lua | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/warthog.lua b/warthog.lua index 7217f8a..bea4d1a 100644 --- a/warthog.lua +++ b/warthog.lua @@ -57,21 +57,25 @@ stepheight = 0.6, end, }) - -local spawn_on = "default:dirt_with_grass" +local spawn_on = {"default:dirt_with_grass"} local spawn_by = {"group:grass"} +if minetest.get_mapgen_setting("mg_name") ~= "v6" then + spawn_on = {"default:dirt_with_dry_grass"} + spawn_by = {"group:dry_grass"} +end + if minetest.get_modpath("ethereal") then - spawn_on = "ethereal:mushroom_dirt" + spawn_on = {"ethereal:mushroom_dirt"} spawn_by = {"flowers:mushroom_brown", "flowers:mushroom_brown"} end mobs:spawn({ name = "mobs_animal:pumba", - nodes = {spawn_on}, + nodes = spawn_on, neighbors = spawn_by, min_light = 10, - chance = 5000, -- 15000 + chance = 6000, -- 15000 min_height = 0, max_height = 200, day_toggle = true,