Add some global spawn restrictions

- no monsters on mycelium
- nothing on non-opaque blocks, except air
This commit is contained in:
Wuzzy 2018-06-03 17:48:32 +02:00
parent f022b747b0
commit 2dbda44a93
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,10 @@
function mobs:spawn_abm_check(pos, node, name)
if (node.name == "air") then
return true
elseif (node.name == "mcl_core:mycelium" or node.name == "mcl_core:mycelium_snow") and minetest.registered_entities[name].type == "monster" then
return false
elseif minetest.get_item_group(node.name, "opaque") ~= 0 then
return false
end
return true
end