From e3d51b3f58a9384cbd5d0d368c23e36d7067541a Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Fri, 19 Jun 2020 10:55:31 +0100 Subject: [PATCH] hogs can spawn on dry dirt with dry grass --- warthog.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/warthog.lua b/warthog.lua index f9ca4d6..35ebcb0 100644 --- a/warthog.lua +++ b/warthog.lua @@ -63,7 +63,7 @@ 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_on = {"default:dirt_with_dry_grass", "default:dry_dirt_with_dry_grass"} spawn_by = {"group:dry_grass"} end