From cca6f2ae1c24e713f3873b25416c36d20040f00f Mon Sep 17 00:00:00 2001 From: Duane Date: Tue, 28 Jun 2016 00:49:46 -0500 Subject: [PATCH] Correct slime spawns. --- mobs.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobs.lua b/mobs.lua index 0e310b8..8c03ce5 100644 --- a/mobs.lua +++ b/mobs.lua @@ -656,7 +656,7 @@ if minetest.registered_entities["mobs_slimes:green_big"] then ) mobs:spawn_specific("mobs_slimes:green_medium", {"fun_caves:stone_with_moss", "fun_caves:stone_with_algae", 'fun_caves:polluted_dirt'}, {"air"}, -1, 20, 30, 30000, 2, -31000, 31000 ) - mobs:spawn_specific("mobs_slimes:green_small", {"default:dirt_with_grass", "default:junglegrass", "default:mossycobble", "ethereal:green_dirt_top", 'fun_caves:polluted_dirt'}, {"air"}, -1, 20, 30, 30000, 3, -31000, 31000 + mobs:spawn_specific("mobs_slimes:green_small", {"fun_caves:stone_with_moss", "fun_caves:stone_with_algae", 'fun_caves:polluted_dirt'}, {"air"}, -1, 20, 30, 30000, 3, -31000, 31000 ) end